Input: ALPS - fix memory leak when detection fails
This fixes memory leak introduced by commit
a09221e83e
Acked-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
Родитель
4a6155a465
Коммит
93050db206
|
@ -2605,8 +2605,10 @@ int alps_detect(struct psmouse *psmouse, bool set_properties)
|
|||
return -ENOMEM;
|
||||
|
||||
error = alps_identify(psmouse, priv);
|
||||
if (error)
|
||||
if (error) {
|
||||
kfree(priv);
|
||||
return error;
|
||||
}
|
||||
|
||||
if (set_properties) {
|
||||
psmouse->vendor = "ALPS";
|
||||
|
|
Загрузка…
Ссылка в новой задаче