mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
driver core: Prevent reference to freed memory on error path
priv is drv->p. So only free drv->p after we've finished using priv. Found using a static code analysis tool Signed-off-by: Phil Carmody <ext-phil.2.carmody@nokia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
e6309e7568
commit
99b28f1b41
@ -703,9 +703,9 @@ int bus_add_driver(struct device_driver *drv)
|
||||
return 0;
|
||||
|
||||
out_unregister:
|
||||
kobject_put(&priv->kobj);
|
||||
kfree(drv->p);
|
||||
drv->p = NULL;
|
||||
kobject_put(&priv->kobj);
|
||||
out_put_bus:
|
||||
bus_put(bus);
|
||||
return error;
|
||||
|
Loading…
Reference in New Issue
Block a user