objtool: Fix memory leak in create_static_call_sections()
authorMiaoqian Lin <linmq006@gmail.com>
Mon, 5 Dec 2022 08:06:42 +0000 (12:06 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 12:57:22 +0000 (13:57 +0100)
commit3a75866a5ceff5d4fdd5471e06c4c4d03e0298b3
treeb20ea3cf37ebe7d5a1e0285118e8f6d7f21e0891
parentea30508b7bb19a21c13f23f5d881ab9082e84425
objtool: Fix memory leak in create_static_call_sections()

[ Upstream commit 3da73f102309fe29150e5c35acd20dd82063ff67 ]

strdup() allocates memory for key_name. We need to release the memory in
the following error paths. Add free() to avoid memory leak.

Fixes: 1e7e47883830 ("x86/static_call: Add inline static call implementation for x86-64")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20221205080642.558583-1-linmq006@gmail.com
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/objtool/check.c