media: solo6x10: fix possible memory leak in solo_sysfs_init()
[ Upstream commit7f5866dd96] If device_register() returns error in solo_sysfs_init(), the name allocated by dev_set_name() need be freed. As comment of device_register() says, it should use put_device() to give up the reference in the error path. So fix this by calling put_device(), then the name can be freed in kobject_cleanup(). Fixes:dcae5dacbc("[media] solo6x10: sync to latest code from Bluecherry's git repo") Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
0369af6fe3
commit
49060c0da5
1 changed files with 1 additions and 0 deletions
|
|
@ -420,6 +420,7 @@ static int solo_sysfs_init(struct solo_dev *solo_dev)
|
|||
solo_dev->nr_chans);
|
||||
|
||||
if (device_register(dev)) {
|
||||
put_device(dev);
|
||||
dev->parent = NULL;
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue