media: solo6x10: fix possible memory leak in solo_sysfs_init()
authorYang Yingliang <yangyingliang@huawei.com>
Thu, 10 Nov 2022 08:24:23 +0000 (16:24 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 31 Dec 2022 12:32:13 +0000 (13:32 +0100)
commit9416861170ba0da8ddb0f4fd2d28334f0ed3b9c2
treec45b52b79923b21fdd25600c1cd3782342d6264f
parent8a204a0b4a0d105229735222c515759ea2b126c1
media: solo6x10: fix possible memory leak in solo_sysfs_init()

[ Upstream commit 7f5866dd96d95b74e439f6ee17b8abd8195179fb ]

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: dcae5dacbce5 ("[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>
drivers/media/pci/solo6x10/solo6x10-core.c