mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
driver core: location: Check for allocations failure
Check whether the kzalloc() succeeds and return false if it fails.
Fixes: 6423d29510
("driver core: Add sysfs support for physical location of a device")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/YnOn28OFBHHd5bQb@kili
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c3d438eeb5
commit
bc443c31de
@ -24,6 +24,8 @@ bool dev_add_physical_location(struct device *dev)
|
||||
|
||||
dev->physical_location =
|
||||
kzalloc(sizeof(*dev->physical_location), GFP_KERNEL);
|
||||
if (!dev->physical_location)
|
||||
return false;
|
||||
dev->physical_location->panel = pld->panel;
|
||||
dev->physical_location->vertical_position = pld->vertical_position;
|
||||
dev->physical_location->horizontal_position = pld->horizontal_position;
|
||||
|
Loading…
Reference in New Issue
Block a user