From 09a788624dbe32aeeb0d74c97c0965303eb96d8c Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Tue, 22 Dec 2015 17:14:13 +0800 Subject: common: cli: avoid memory leak Whether CONFIG_SYS_HUSH_PARSER is defined or not, should always check to free 'buff' to avoid memory leak. Signed-off-by: Peng Fan Cc: Tom Rini Cc: Masahiro Yamada Cc: Simon Glass --- common/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/cli.c') diff --git a/common/cli.c b/common/cli.c index fbcd339c9b..119d282bc2 100644 --- a/common/cli.c +++ b/common/cli.c @@ -103,9 +103,9 @@ int run_command_list(const char *cmd, int len, int flag) * is pretty rare. */ rcode = cli_simple_run_command_list(buff, flag); +#endif if (need_buff) free(buff); -#endif return rcode; } -- cgit v1.2.3