Browse Source

kconfig: Fix expr_free() E_NOT leak

Only the E_NOT operand and not the E_NOT node itself was freed, due to
accidentally returning too early in expr_free(). Outline of leak:

	switch (e->type) {
	...
	case E_NOT:
		expr_free(e->left.expr);
		return;
	...
	}
	*Never reached, 'e' leaked*
	free(e);

Fix by changing the 'return' to a 'break'.

Summary from Valgrind on 'menuconfig' (ARCH=x86) before the fix:

	LEAK SUMMARY:
	   definitely lost: 44,448 bytes in 1,852 blocks
	   ...

Summary after the fix:

	LEAK SUMMARY:
	   definitely lost: 1,608 bytes in 67 blocks
	   ...

Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Ulf Magnusson 7 năm trước cách đây
mục cha
commit
5b1374b3b3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      scripts/kconfig/expr.c

+ 1 - 1
scripts/kconfig/expr.c

@@ -113,7 +113,7 @@ void expr_free(struct expr *e)
 		break;
 		break;
 	case E_NOT:
 	case E_NOT:
 		expr_free(e->left.expr);
 		expr_free(e->left.expr);
-		return;
+		break;
 	case E_EQUAL:
 	case E_EQUAL:
 	case E_GEQ:
 	case E_GEQ:
 	case E_GTH:
 	case E_GTH: