HID: input: fix leaking custom input node name
authorStefan Agner <[email protected]>
Tue, 28 Aug 2018 11:29:55 +0000 (13:29 +0200)
committerJiri Kosina <[email protected]>
Tue, 28 Aug 2018 12:06:34 +0000 (14:06 +0200)
Make sure to free the custom input node name on disconnect.

Cc: [email protected] # v4.18+
Fixes: c554bb045511 ("HID: input: append a suffix matching the application")
Signed-off-by: Stefan Agner <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
drivers/hid/hid-input.c

index 4e94ea3e280a3c66a00cdf0709569a131bf4ee49..ac201817a2dd78386bf63823d5ee995dd31643a8 100644 (file)
@@ -1815,6 +1815,7 @@ void hidinput_disconnect(struct hid_device *hid)
                        input_unregister_device(hidinput->input);
                else
                        input_free_device(hidinput->input);
+               kfree(hidinput->name);
                kfree(hidinput);
        }