mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 10:58:48 +09:00
net: mana: Fix possible double free in error handling path
[ Upstream commit 1864b8224195d0e43ddb92a8151f54f6562090cc ]
When auxiliary_device_add() returns error and then calls
auxiliary_device_uninit(), callback function adev_release
calls kfree(madev). We shouldn't call kfree(madev) again
in the error handling path. Set 'madev' to NULL.
Fixes: a69839d432 ("net: mana: Add support for auxiliary device")
Signed-off-by: Ma Ke <make24@iscas.ac.cn>
Link: https://patch.msgid.link/20240625130314.2661257-1-make24@iscas.ac.cn
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
952bf8df22
commit
3243e64eb4
@@ -2752,6 +2752,8 @@ static int add_adev(struct gdma_dev *gd)
|
||||
if (ret)
|
||||
goto init_fail;
|
||||
|
||||
/* madev is owned by the auxiliary device */
|
||||
madev = NULL;
|
||||
ret = auxiliary_device_add(adev);
|
||||
if (ret)
|
||||
goto add_fail;
|
||||
|
||||
Reference in New Issue
Block a user