From: Ulrich Drepper Date: Sat, 13 Oct 2007 05:21:59 +0000 (+0000) Subject: (save_aux_cache): Free memory allocated for temporary file name. X-Git-Tag: cvs/fedora-glibc-20071014T1847~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78d6dd72e50566aaa16c35c83b1f574eef868d1e;p=thirdparty%2Fglibc.git (save_aux_cache): Free memory allocated for temporary file name. --- diff --git a/elf/cache.c b/elf/cache.c index 9a600ea5353..b8561e4b5ff 100644 --- a/elf/cache.c +++ b/elf/cache.c @@ -800,5 +800,6 @@ save_aux_cache (const char *aux_cache_name) out_fail: /* Free allocated memory. */ + free (temp_name); free (file_entries); }