mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
driver: uio: fix possible memory leak in __uio_register_device
[ Upstream commit1a392b3de7] 'idev' is malloced in __uio_register_device() and leak free it before leaving from the uio_get_minor() error handing case, it will cause memory leak. Fixes:a93e7b3315("uio: Prevent device destruction while fds are open") Signed-off-by: Liu Jian <liujian56@huawei.com> Reviewed-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
1dedc9d926
commit
3b656e7c16
|
|
@ -938,8 +938,10 @@ int __uio_register_device(struct module *owner,
|
|||
atomic_set(&idev->event, 0);
|
||||
|
||||
ret = uio_get_minor(idev);
|
||||
if (ret)
|
||||
if (ret) {
|
||||
kfree(idev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
idev->dev.devt = MKDEV(uio_major, idev->minor);
|
||||
idev->dev.class = &uio_class;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user