drivers/misc/spear13xx_pcie_gadget.c: fix a memory leak in spear_pcie_gadget_probe error path

In the case of goto err_kzalloc, we should kfree target.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Pratyush Anand <pratyush.anand@st.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Axel Lin 2011-06-15 15:08:21 -07:00 committed by Linus Torvalds
parent 32e45ff43e
commit 5a1e6f7583

View file

@ -845,7 +845,7 @@ err_iounmap:
err_iounmap_app: err_iounmap_app:
iounmap(config->va_app_base); iounmap(config->va_app_base);
err_kzalloc: err_kzalloc:
kfree(config); kfree(target);
err_rel_res: err_rel_res:
release_mem_region(res1->start, resource_size(res1)); release_mem_region(res1->start, resource_size(res1));
err_rel_res0: err_rel_res0: