perf subcmd: Fix missing check for return value of malloc() in add_cmdname()
authorChenyuan Mi <cymi20@fudan.edu.cn>
Wed, 14 Jun 2023 15:01:18 +0000 (08:01 -0700)
committerNamhyung Kim <namhyung@kernel.org>
Tue, 20 Jun 2023 23:55:35 +0000 (16:55 -0700)
commit53fc25b7f557089aff101235152ae4bff15c428a
tree864cba4e08d999ce2895599c9238ef0bdf05f9db
parent240de691dd6684d15f63613aa7fbc64e6098d6c9
perf subcmd: Fix missing check for return value of malloc() in add_cmdname()

The malloc() function may return NULL when it fails,
which may cause null pointer deference in add_cmdname(),
add Null check for return value of malloc().

Found by our static analysis tool.

Signed-off-by: Chenyuan Mi <cymi20@fudan.edu.cn>
Acked-by: Ian Rogers <irogers@google.com>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: linux-kernel@vger.kernel.org
Link: https://lore.kernel.org/r/20230614150118.115208-1-cymi20@fudan.edu.cn
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/lib/subcmd/help.c