about summary refs log tree commit diff
path: root/malloc
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-04-12 21:39:32 +0000
committerUlrich Drepper <drepper@redhat.com>2000-04-12 21:39:32 +0000
commit92d2e18fa4f031c6a129aa5cfeaef59127ba3b1b (patch)
tree1fac675a302ac3e22a60dd90cf81332db779b776 /malloc
parent3ea1b82e6bb75e69f05c3e4c90e21210598b0174 (diff)
downloadglibc-92d2e18fa4f031c6a129aa5cfeaef59127ba3b1b.tar.gz
glibc-92d2e18fa4f031c6a129aa5cfeaef59127ba3b1b.tar.xz
glibc-92d2e18fa4f031c6a129aa5cfeaef59127ba3b1b.zip
Update.
	* locale/programs/locale.c (show_info): Don't try to look into
	data for LC_ALL (there is none).
Diffstat (limited to 'malloc')
-rw-r--r--malloc/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c
index 2351963838..93feb07ecd 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -3738,7 +3738,7 @@ Void_t* cALLOc(n, elem_size) size_t n; size_t elem_size;
   }
 #endif
 
-  MALLOC_ZERO(mem, cs);
+  MALLOC_ZERO(mem, sz);
   return mem;
 }