mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 02:04:05 +08:00
HID: fix memleaking of collection
hid_free_device() doesn't free device->collection (but it does free device->rdesc and device itself). This imposes memory leak. Fix it. Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
99abfeafb5
commit
767fe7877c
@ -543,6 +543,7 @@ void hid_free_device(struct hid_device *device)
|
||||
}
|
||||
|
||||
kfree(device->rdesc);
|
||||
kfree(device->collection);
|
||||
kfree(device);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(hid_free_device);
|
||||
|
Loading…
Reference in New Issue
Block a user