HID: fix possible double-free on error path in hid parser
authorJiri Kosina <jkosina@suse.cz>
Wed, 21 Feb 2007 16:18:03 +0000 (17:18 +0100)
committerJiri Kosina <jkosina@suse.cz>
Thu, 1 Mar 2007 08:52:43 +0000 (09:52 +0100)
commit776c0e96edecf77f827a62d2a1641cc2ca479043
treef5eeeefdbd02d3ffcc16b2394451032bf4c4969e
parent4330eb2e5fb6d3c9c0a0be8ed14793f72334d1d4
HID: fix possible double-free on error path in hid parser

Freeing of device->collection is properly done in hid_free_device() (as
this function is supposed to free all the device resources and could be
called from transport specific code, e.g. usb_hid_configure()).

Remove all kfree() calls preceeding the hid_free_device() call.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/hid-core.c