mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
ax25: Replace kfree() in ax25_dev_free() with ax25_dev_put()
[ Upstream commit166fcf86cd
] The object "ax25_dev" is managed by reference counting. Thus it should not be directly released by kfree(), replace with ax25_dev_put(). Fixes:d01ffb9eee
("ax25: add refcount in ax25_dev to avoid UAF bugs") Suggested-by: Dan Carpenter <dan.carpenter@linaro.org> Signed-off-by: Duoming Zhou <duoming@zju.edu.cn> Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org> Link: https://lore.kernel.org/r/20240530051733.11416-1-duoming@zju.edu.cn Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
f4df9d6c8d
commit
e6ad2311e0
@ -193,7 +193,7 @@ void __exit ax25_dev_free(void)
|
||||
list_for_each_entry_safe(s, n, &ax25_dev_list, list) {
|
||||
netdev_put(s->dev, &s->dev_tracker);
|
||||
list_del(&s->list);
|
||||
kfree(s);
|
||||
ax25_dev_put(s);
|
||||
}
|
||||
spin_unlock_bh(&ax25_dev_lock);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user