From 6373c2b14188d31a3e4a3d7eb917b0479d56f373 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 30 Dec 2003 10:57:16 +0000 Subject: Fix the manditory typo in my last minute untested fix. -Erik --- libc/stdlib/malloc-standard/calloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/stdlib') 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; -- cgit v1.2.3