char: xillybus: fix a refcount leak in cleanup_dev()
[ Upstream commit b67d19662f
]
usb_get_dev is called in xillyusb_probe. So it is better to call
usb_put_dev before xdev is released.
Acked-by: Eli Billauer <eli.billauer@gmail.com>
Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
Link: https://lore.kernel.org/r/20220406075703.23464-1-hbh25y@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Родитель
feb0fb3969
Коммит
bc8fceda3b
|
@ -549,6 +549,7 @@ static void cleanup_dev(struct kref *kref)
|
|||
if (xdev->workq)
|
||||
destroy_workqueue(xdev->workq);
|
||||
|
||||
usb_put_dev(xdev->udev);
|
||||
kfree(xdev->channels); /* Argument may be NULL, and that's fine */
|
||||
kfree(xdev);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче