diff options
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ | |||
25 | */ | 25 | */ |
26 | 26 | ||
27 | #include "includes.h" | 27 | #include "includes.h" |
28 | RCSID("$OpenBSD: monitor.c,v 1.29 2002/09/26 11:38:43 markus Exp $"); | 28 | RCSID("$OpenBSD: monitor.c,v 1.30 2002/11/05 19:45:20 markus Exp $"); |
29 | 29 | ||
30 | #include <openssl/dh.h> | 30 | #include <openssl/dh.h> |
31 | 31 | ||
@@ -1551,7 +1551,7 @@ mm_get_keystate(struct monitor *pmonitor) | |||
1551 | void * | 1551 | void * |
1552 | mm_zalloc(struct mm_master *mm, u_int ncount, u_int size) | 1552 | mm_zalloc(struct mm_master *mm, u_int ncount, u_int size) |
1553 | { | 1553 | { |
1554 | size_t len = size * ncount; | 1554 | size_t len = (size_t) size * ncount; |
1555 | void *address; | 1555 | void *address; |
1556 | 1556 | ||
1557 | if (len == 0 || ncount > SIZE_T_MAX / size) | 1557 | if (len == 0 || ncount > SIZE_T_MAX / size) |