[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1297237048-32714-1-git-send-email-strakh@ispras.ru>
Date: Wed, 9 Feb 2011 10:37:28 +0300
From: Alexander Strakh <cromlehg@...il.com>
To: dmitry.torokhov@...il.com
Cc: rydberg@...omail.se, oneukum@...e.de,
oblivian@...rs.sourceforge.net, linux-input@...r.kernel.org,
linux-kernel@...r.kernel.org,
Alexander Strakh <cromlehg@...il.com>,
Alexander Strakh <strakh@...ras.ru>
Subject: [PATCH 1/1] Fix error path in wacom_probe
From: Alexander Strakh <cromlehg@...il.com>
In file drivers/input/tablet/wacom_sys.c in
wacom_probe after error we can goto label2. In
this case function usb_free was not called.
It will be right goto for the label tail3.
wacom->irq = usb_alloc_urb(0, GFP_KERNEL);
...
/* Retrieve the physical and logical size for OEM devices */
error = wacom_retrieve_hid_descriptor(intf, features);
if (error)
goto fail2;
...
fail3: usb_free_urb(wacom->irq);
fail2: usb_free_coherent(dev, WACOM_PKGLEN_MAX, wacom_wac->data, wacom->data_dma);
Replaced wrong transition.
Signed-off-by: Alexander Strakh <strakh@...ras.ru>
---
drivers/input/tablet/wacom_sys.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/input/tablet/wacom_sys.c b/drivers/input/tablet/wacom_sys.c
index fc38149..cf8fb9f 100644
--- a/drivers/input/tablet/wacom_sys.c
+++ b/drivers/input/tablet/wacom_sys.c
@@ -519,7 +519,7 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i
/* Retrieve the physical and logical size for OEM devices */
error = wacom_retrieve_hid_descriptor(intf, features);
if (error)
- goto fail2;
+ goto fail3;
wacom_setup_device_quirks(features);
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists