diff options
Diffstat (limited to 'libc/stdlib/_atexit.c')
-rw-r--r-- | libc/stdlib/_atexit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/stdlib/_atexit.c b/libc/stdlib/_atexit.c index a27a4a199..21aa30c81 100644 --- a/libc/stdlib/_atexit.c +++ b/libc/stdlib/_atexit.c @@ -298,8 +298,7 @@ void __exit_handler(int status) } #ifdef __UCLIBC_DYNAMIC_ATEXIT__ /* Free up memory used by the __exit_function_table structure */ - if (__exit_function_table) - free(__exit_function_table); + free(__exit_function_table); #endif } #endif |