mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
ax25: Replace kfree() in ax25_dev_free() with ax25_dev_put()
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>
This commit is contained in:
parent
3c34fb0bd4
commit
166fcf86cd
@ -196,7 +196,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