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://review.tizen.org/git/?a=commitdiff_plain;h=78d6dd72e50566aaa16c35c83b1f574eef868d1e;p=platform%2Fupstream%2Fglibc.git (save_aux_cache): Free memory allocated for temporary file name. --- diff --git a/elf/cache.c b/elf/cache.c index 9a600ea..b8561e4 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); }