Plug leak

Mon Jun  2 00:56:00 2008  Søren Sandmann  <sandmann@redhat.com>

	* binfile.c (get_debug_binaries): Plug leak



svn path=/trunk/; revision=429
This commit is contained in:
Søren Sandmann
2008-06-02 04:56:32 +00:00
committed by Søren Sandmann Pedersen
parent 7cd38113c8
commit 355818bf5b
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Mon Jun 2 00:56:00 2008 Søren Sandmann <sandmann@redhat.com>
* binfile.c (get_debug_binaries): Plug leak
Mon Jun 2 00:51:46 2008 Søren Sandmann <sandmann@redhat.com>
* binfile.c (get_debug_binaries): Keep a list of elf files for

View File

@ -255,6 +255,8 @@ get_debug_binaries (GList *files,
g_list_foreach (free_us, (GFunc)g_free, NULL);
g_list_free (free_us);
g_hash_table_destroy (seen_names);
return files;
}