mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
driver: uio: fix possible memory leak in __uio_register_device
[ Upstream commit 1a392b3de7c5747506b38fc14b2e79977d3c7770 ] '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: a93e7b331568 ("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
35eb06fa70
commit
1b97b03ace
@ -939,8 +939,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…
x
Reference in New Issue
Block a user