From: John K. <det...@gm...> - 2017-08-31 03:48:19
|
Not sure if this is the correct plae to post this? This is just a small memory leak.fix. svn diff libdwarf/libdwarf_elf_init.c Index: libdwarf/libdwarf_elf_init.c =================================================================== --- libdwarf/libdwarf_elf_init.c (revision 3564) +++ libdwarf/libdwarf_elf_init.c (working copy) @@ -383,6 +383,7 @@ if (e->eo_shdr) free(e->eo_shdr); + elf_end(e->eo_elf); free(e); free(iface); Cheers. |