usb: gadget: net2272: Fix a memory leak in an error handling path in 'net2272_plat_probe()'

'dev' is allocated in 'net2272_probe_init()'. It must be freed in the error
handling path, as already done in the remove function (i.e.
'net2272_plat_remove()')

Fixes: 90fccb529d ("usb: gadget: Gadget directory cleanup - group UDC drivers")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
This commit is contained in:
Christophe JAILLET 2020-04-27 20:04:23 +02:00 committed by Felipe Balbi
parent f058764d19
commit ccaef7e6e3
1 changed files with 2 additions and 0 deletions

View File

@ -2647,6 +2647,8 @@ net2272_plat_probe(struct platform_device *pdev)
err_req: err_req:
release_mem_region(base, len); release_mem_region(base, len);
err: err:
kfree(dev);
return ret; return ret;
} }