diff options
author | tjr <tjr@FreeBSD.org> | 2002-08-04 02:52:11 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-08-04 02:52:11 +0000 |
commit | 79a3f64da0ce06e4adeec4d5366f9ab251c89a32 (patch) | |
tree | f9d58ad8367157825abf648b2dd1c2a6cad69e74 /lib/libc/stdlib | |
parent | c3ab10b17915ac6015c29576e0e4ecdf3d0d4f2b (diff) | |
download | FreeBSD-src-79a3f64da0ce06e4adeec4d5366f9ab251c89a32.zip FreeBSD-src-79a3f64da0ce06e4adeec4d5366f9ab251c89a32.tar.gz |
Signal an error instead of giving the caller less memory than they asked
for when num * size would cause integer overflow.
MFC after: 1 week
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/calloc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/stdlib/calloc.c b/lib/libc/stdlib/calloc.c index ced9273..863e546 100644 --- a/lib/libc/stdlib/calloc.c +++ b/lib/libc/stdlib/calloc.c @@ -37,6 +37,8 @@ static char sccsid[] = "@(#)calloc.c 8.1 (Berkeley) 6/4/93"; #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <errno.h> +#include <limits.h> #include <stdlib.h> #include <string.h> @@ -47,6 +49,11 @@ calloc(num, size) { void *p; + if (size != 0 && SIZE_MAX / size < num) { + errno = ENOMEM; + return (NULL); + } + size *= num; if ( (p = malloc(size)) ) bzero(p, size); |