From: Ulf Magnusson Date: Sun, 8 Oct 2017 17:35:44 +0000 (+0200) Subject: kconfig: Fix automatic menu creation mem leak X-Git-Tag: v4.16-rc1~105^2~21 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=ae7440ef0c8013d68c00dad6900e7cce5311bb1c;p=linux.git kconfig: Fix automatic menu creation mem leak expr_trans_compare() always allocates and returns a new expression, giving the following leak outline: ... *Allocate* basedep = expr_trans_compare(basedep, E_UNEQUAL, &symbol_no); ... for (menu = parent->next; menu; menu = menu->next) { ... *Copy* dep2 = expr_copy(basedep); ... *Free copy* expr_free(dep2); } *basedep lost!* Fix by freeing 'basedep' after the loop. Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix: LEAK SUMMARY: definitely lost: 344,376 bytes in 14,349 blocks ... Summary after the fix: LEAK SUMMARY: definitely lost: 44,448 bytes in 1,852 blocks ... Signed-off-by: Ulf Magnusson Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 2baebe346de9..5b2415991c3e 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -440,6 +440,7 @@ void menu_finalize(struct menu *parent) menu->parent = parent; last_menu = menu; } + expr_free(basedep); if (last_menu) { parent->list = parent->next; parent->next = last_menu->next;