diff options
author | Yong Wang <yong.y.wang@linux.intel.com> | 2010-03-19 23:02:16 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-03-19 23:03:09 -0700 |
commit | 88fcf710c13bd41f2b98c5411e4f21ab98da4fb4 (patch) | |
tree | 70302e38f10076fb6844090366cfe270b622a9e0 /drivers/input/sparse-keymap.c | |
parent | 31968ecf584330b51a25b7bf881c2b632a02a3fb (diff) |
Input: sparse-keymap - free the right keymap on error
'map' is allocated in sparse_keymap_setup() and it it the one that should
be freed on error instead of 'keymap'.
Signed-off-by: Yong Wang <yong.y.wang@intel.com>
Cc: stable@kernel.org
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/sparse-keymap.c')
-rw-r--r-- | drivers/input/sparse-keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/sparse-keymap.c b/drivers/input/sparse-keymap.c index e6bde55e5203..f64e004935a9 100644 --- a/drivers/input/sparse-keymap.c +++ b/drivers/input/sparse-keymap.c @@ -163,7 +163,7 @@ int sparse_keymap_setup(struct input_dev *dev, return 0; err_out: - kfree(keymap); + kfree(map); return error; } |