提交 4d45e218 编写于 作者: M matthieu castet 提交者: Greg Kroah-Hartman

[PATCH] USB: UEAGLE : memory leack fix

this patch fix leak of memory allocated to intr if allocation of
sc->urb_int fails.
Found by the Coverity checker.
Signed-off-by: NDuncan Sands <baldrick@free.fr>
Signed-off-by: NMatthieu CASTET <castet.matthieu@free.fr>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 584958c3
......@@ -1376,7 +1376,7 @@ static int uea_boot(struct uea_softc *sc)
if (ret < 0) {
uea_err(INS_TO_USBDEV(sc),
"urb submition failed with error %d\n", ret);
goto err1;
goto err;
}
sc->kthread = kthread_run(uea_kthread, sc, "ueagle-atm");
......@@ -1390,10 +1390,10 @@ static int uea_boot(struct uea_softc *sc)
err2:
usb_kill_urb(sc->urb_int);
err1:
kfree(intr);
err:
usb_free_urb(sc->urb_int);
sc->urb_int = NULL;
kfree(intr);
uea_leaves(INS_TO_USBDEV(sc));
return -ENOMEM;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册