]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
soc: mediatek: svs: Fix memory leak in svs_enable_debug_write()
authorZilin Guan <zilin@seu.edu.cn>
Sun, 28 Dec 2025 16:26:36 +0000 (16:26 +0000)
committerAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Thu, 8 Jan 2026 09:17:08 +0000 (10:17 +0100)
commit6259094ee806fb813ca95894c65fb80e2ec98bf1
tree97786e9fef45eb4ea298180f7ffd7fef5daefdc4
parent8f0b4cce4481fb22653697cced8d0d04027cb1e8
soc: mediatek: svs: Fix memory leak in svs_enable_debug_write()

In svs_enable_debug_write(), the buf allocated by memdup_user_nul()
is leaked if kstrtoint() fails.

Fix this by using __free(kfree) to automatically free buf, eliminating
the need for explicit kfree() calls and preventing leaks.

Fixes: 13f1bbcfb582 ("soc: mediatek: SVS: add debug commands")
Co-developed-by: Jianhao Xu <jianhao.xu@seu.edu.cn>
Signed-off-by: Jianhao Xu <jianhao.xu@seu.edu.cn>
Signed-off-by: Zilin Guan <zilin@seu.edu.cn>
[Angelo: Added missing cleanup.h inclusion]
Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
drivers/soc/mediatek/mtk-svs.c