diff options
Diffstat (limited to 'libc/stdlib')
-rw-r--r-- | libc/stdlib/malloc-standard/calloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/malloc-standard/calloc.c b/libc/stdlib/malloc-standard/calloc.c index cff0adab8..a67dad738 100644 --- a/libc/stdlib/malloc-standard/calloc.c +++ b/libc/stdlib/malloc-standard/calloc.c @@ -29,7 +29,7 @@ void* calloc(size_t n_elements, size_t elem_size) /* guard vs integer overflow, but allow nmemb * to fall through and call malloc(0) */ - size=lsize * nmemb; + size = n_elements * elem_size; if (n_elements && elem_size != (size / n_elements)) { __set_errno(ENOMEM); return NULL; |