|
@ -32,7 +32,7 @@ |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint) |
|
|
#if defined(LIBC_SCCS) && !defined(lint) |
|
|
static char *rcsid = "$OpenBSD: calloc.c,v 1.5.10.1 2002/07/30 14:51:20 jason Exp $"; |
|
|
|
|
|
|
|
|
static char *rcsid = "$OpenBSD: calloc.c,v 1.5.10.2 2002/07/31 16:40:07 jason Exp $"; |
|
|
#endif /* LIBC_SCCS and not lint */ |
|
|
#endif /* LIBC_SCCS and not lint */ |
|
|
|
|
|
|
|
|
#include <stdlib.h> |
|
|
#include <stdlib.h> |
|
@ -47,7 +47,7 @@ calloc(num, size) |
|
|
{ |
|
|
{ |
|
|
register void *p; |
|
|
register void *p; |
|
|
|
|
|
|
|
|
if (SIZE_T_MAX / num < size) { |
|
|
|
|
|
|
|
|
if (num && size && SIZE_T_MAX / num < size) { |
|
|
errno = ENOMEM; |
|
|
errno = ENOMEM; |
|
|
return NULL; |
|
|
return NULL; |
|
|
} |
|
|
} |
|
|