]> www.infradead.org Git - users/jedix/linux-maple.git/commit
HID: wacom: fix memory leak on sysfs attribute creation failure
authorQasim Ijaz <qasdev00@gmail.com>
Fri, 6 Jun 2025 18:49:58 +0000 (19:49 +0100)
committerJiri Kosina <jkosina@suse.com>
Tue, 10 Jun 2025 19:10:27 +0000 (21:10 +0200)
commit1a19ae437ca5d5c7d9ec2678946fb339b1c706bf
tree7df27b3342cc71e877eb290a590af6addcafe15a
parent5ae416c5b1e2e816aee7b3fc8347adf70afabb4c
HID: wacom: fix memory leak on sysfs attribute creation failure

When sysfs_create_files() fails during wacom_initialize_remotes() the
fifo buffer is not freed leading to a memory leak.

Fix this by calling kfifo_free() before returning.

Fixes: 83e6b40e2de6 ("HID: wacom: EKR: have the wacom resources dynamically allocated")
Reviewed-by: Ping Cheng <ping.cheng@wacom.com>
Cc: stable@vger.kernel.org
Signed-off-by: Qasim Ijaz <qasdev00@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
drivers/hid/wacom_sys.c