mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
Input: wistron_btns - fix a memory leak in wb_module_init error path
select_keymap() calls copy_keymap() to allocate a memory for keymap. This patch adds a missing kfree(keymap) in wb_module_init error path. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
671386bb23
commit
1fcb8bb631
1 changed files with 3 additions and 1 deletions
|
@ -1347,7 +1347,7 @@ static int __init wb_module_init(void)
|
|||
|
||||
err = map_bios();
|
||||
if (err)
|
||||
return err;
|
||||
goto err_free_keymap;
|
||||
|
||||
err = platform_driver_register(&wistron_driver);
|
||||
if (err)
|
||||
|
@ -1371,6 +1371,8 @@ static int __init wb_module_init(void)
|
|||
platform_driver_unregister(&wistron_driver);
|
||||
err_unmap_bios:
|
||||
unmap_bios();
|
||||
err_free_keymap:
|
||||
kfree(keymap);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue