diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-12 21:39:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-12 21:39:32 +0000 |
commit | 92d2e18fa4f031c6a129aa5cfeaef59127ba3b1b (patch) | |
tree | 1fac675a302ac3e22a60dd90cf81332db779b776 /malloc | |
parent | 3ea1b82e6bb75e69f05c3e4c90e21210598b0174 (diff) | |
download | glibc-92d2e18fa4f031c6a129aa5cfeaef59127ba3b1b.zip glibc-92d2e18fa4f031c6a129aa5cfeaef59127ba3b1b.tar.gz glibc-92d2e18fa4f031c6a129aa5cfeaef59127ba3b1b.tar.bz2 |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c index 2351963..93feb07 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; } |