diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-11-13 05:43:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-11-13 05:43:36 +0000 |
commit | 37fa1953d539cc34c33b48bc66a64f5c01dbc1fd (patch) | |
tree | f4691635b5f6d3dec57f28abad2aa8b6fc67e667 /sysdeps/posix/libc_fatal.c | |
parent | a9055cab7ac609b96984179194c7a2ec410c8e2b (diff) | |
download | glibc-37fa1953d539cc34c33b48bc66a64f5c01dbc1fd.tar.gz glibc-37fa1953d539cc34c33b48bc66a64f5c01dbc1fd.tar.xz glibc-37fa1953d539cc34c33b48bc66a64f5c01dbc1fd.zip |
Update.
* malloc/malloc.c (_int_free): Remove test for NULL parameter. (_int_realloc): Call _int_free only if memory parameter is not NULL.
Diffstat (limited to 'sysdeps/posix/libc_fatal.c')
-rw-r--r-- | sysdeps/posix/libc_fatal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/posix/libc_fatal.c b/sysdeps/posix/libc_fatal.c index fd97017579..fac8cbd051 100644 --- a/sysdeps/posix/libc_fatal.c +++ b/sysdeps/posix/libc_fatal.c @@ -129,6 +129,8 @@ __libc_message (int do_abort, const char *fmt, ...) if (! written) vsyslog (LOG_ERR, fmt, ap_copy); + va_end (ap_copy); + if (do_abort() /* Kill the application. */ abort (); |