提交 f0d657e8 编写于 作者: Y Yuyang Du 提交者: Greg Kroah-Hartman

usbip: Fix uninitialized variable bug in vhci

The patch 03cd00d5: "usbip: vhci-hcd: Set the vhci structure up
to work" introduced a bug which uses a vairable without initialization
in error handling code. Fix it.
Reported-by: NDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: NYuyang Du <yuyang.du@intel.com>
Acked-by: NShuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 4f04c210
...@@ -1301,7 +1301,7 @@ static struct hc_driver vhci_hc_driver = { ...@@ -1301,7 +1301,7 @@ static struct hc_driver vhci_hc_driver = {
static int vhci_hcd_probe(struct platform_device *pdev) static int vhci_hcd_probe(struct platform_device *pdev)
{ {
struct vhci *vhci; struct vhci *vhci = *((void **)dev_get_platdata(&pdev->dev));
struct usb_hcd *hcd_hs; struct usb_hcd *hcd_hs;
struct usb_hcd *hcd_ss; struct usb_hcd *hcd_ss;
int ret; int ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册