Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 22f83205 authored by Axel Lin's avatar Axel Lin Committed by Dmitry Torokhov
Browse files

Input: tegra-kbc - correct call to input_free_device



If kzalloc for kbc fails, then we have NULL pointer dereference while
calling input_free_device(kbc->idev) in the error handling.
So it is safer to always use the original name, input_dev.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent d9b830fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -702,7 +702,7 @@ static int __devinit tegra_kbc_probe(struct platform_device *pdev)
err_free_mem_region:
	release_mem_region(res->start, resource_size(res));
err_free_mem:
	input_free_device(kbc->idev);
	input_free_device(input_dev);
	kfree(kbc);

	return err;