]> git.dujemihanovic.xyz Git - linux.git/commit
net: mana: Fix possible double free in error handling path
authorMa Ke <make24@iscas.ac.cn>
Tue, 25 Jun 2024 13:03:14 +0000 (21:03 +0800)
committerPaolo Abeni <pabeni@redhat.com>
Thu, 27 Jun 2024 10:35:58 +0000 (12:35 +0200)
commit1864b8224195d0e43ddb92a8151f54f6562090cc
treea3354945c7344a4756deaf1e4f8e13c6ebc83b6c
parent3f4d9e4f825c617c711f5e1da3059238722f08c1
net: mana: Fix possible double free in error handling path

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: a69839d4327d ("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>
drivers/net/ethernet/microsoft/mana/mana_en.c