1
0
Fork 0

HID: fix memory leak in hidraw_release

hidraw_release() forgot to free the linked list structure, causing memory
leak.

Reported-by: Juan Marcos Diez Esteban <juan_m_diez@yahoo.es>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
hifive-unleashed-5.1
Jiri Kosina 2008-06-24 14:45:27 +02:00
parent f472f80034
commit 4db1c62c99
1 changed files with 2 additions and 0 deletions

View File

@ -211,6 +211,8 @@ static int hidraw_release(struct inode * inode, struct file * file)
kfree(list->hidraw);
}
kfree(list);
return 0;
}