commit | 2cb3be76bf1435326984907d1fa04b6238dd0a03 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue May 24 07:43:57 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue May 24 07:46:00 2022 +0200 |
tree | ef60171c60691f1bda0bbd4d6f54df46ff00445b | |
parent | 019a182ebf1dce312c644993b1d9d0fec2c38c37 [diff] |
CLEANUP: init: address a coverity warning about possible multiply overflow In issue #1585 Coverity suspects a risk of multiply overflow when calculating the SSL cache size, though in practice the cache is limited to 2^32 anyway thus it cannot really happen. Nevertheless, casting the operation should be sufficient to avoid marking it as a false positive.