Browse Source

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>
Jiri Kosina 18 years ago
parent
commit
767fe7877c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/hid/hid-core.c

+ 1 - 0
drivers/hid/hid-core.c

@@ -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);