diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-11 04:32:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-11 04:32:44 +0000 |
commit | cc97b1e5f0c84830f4937f2417928dd4d5f858b8 (patch) | |
tree | 668dabce5734c9b49350ce8780fe512d0fecc46d | |
parent | 64ad0de291ebb06a0bb0ed9c6dd8e4069c9e7794 (diff) | |
download | glibc-cc97b1e5f0c84830f4937f2417928dd4d5f858b8.tar glibc-cc97b1e5f0c84830f4937f2417928dd4d5f858b8.tar.gz glibc-cc97b1e5f0c84830f4937f2417928dd4d5f858b8.tar.bz2 glibc-cc97b1e5f0c84830f4937f2417928dd4d5f858b8.zip |
Update.
* stdlib/atexit.c (initial): New variable. Use to initialize
__exit_funcs.
* stdlib/exit.c (exit): Beware to not free statically allocale
list element [PR libc/1305].
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | stdlib/atexit.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,10 @@ 1999-10-10 Ulrich Drepper <drepper@cygnus.com> + * stdlib/atexit.c (initial): New variable. Use to initialize + __exit_funcs. + * stdlib/exit.c (exit): Beware to not free statically allocale + list element [PR libc/1305]. + * stdlib/xpg_basename.c (__xpg_basename): Don't return pointer to slash before the basename [PR libc/1383]. diff --git a/stdlib/atexit.c b/stdlib/atexit.c index 80cd79ff6a..e9648d60e1 100644 --- a/stdlib/atexit.c +++ b/stdlib/atexit.c @@ -40,7 +40,8 @@ atexit (void (*func) (void)) __libc_lock_define_initialized (static, lock) -struct exit_function_list *__exit_funcs; +static struct exit_function_list initial; +struct exit_function_list *__exit_funcs = &initial; struct exit_function * __new_exitfn (void) |