]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ALSA: vxpocket: Fix resource leak in vxpocket_probe error path
authorHaotian Zhang <vulab@iscas.ac.cn>
Mon, 15 Dec 2025 04:26:52 +0000 (12:26 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 19 Jan 2026 12:09:46 +0000 (13:09 +0100)
commit9f490d2f5dc945d85f5d98fc584629847126286d
tree43575378ff3c9feb828d945fca6f8017e407d35b
parentc851e43b88b40bb7c20176c51cbf4f8c8d960dd9
ALSA: vxpocket: Fix resource leak in vxpocket_probe error path

[ Upstream commit 2a03b40deacbd293ac9aed0f9b11197dad54fe5f ]

When vxpocket_config() fails, vxpocket_probe() returns the error code
directly without freeing the sound card resources allocated by
snd_card_new(), which leads to a memory leak.

Add proper error handling to free the sound card and clear the
allocation bit when vxpocket_config() fails.

Fixes: 15b99ac17295 ("[PATCH] pcmcia: add return value to _config() functions")
Signed-off-by: Haotian Zhang <vulab@iscas.ac.cn>
Link: https://patch.msgid.link/20251215042652.695-1-vulab@iscas.ac.cn
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
sound/pcmcia/vx/vxpocket.c