From: akpm@linux-foundation.org
To: dtor@mail.ru
Cc: linux-input@vger.kernel.org, akpm@linux-foundation.org,
linux@rainbow-software.org, daniel.ritz@gmx.ch,
ddstreet@ieee.org, dmitry.torokhov@gmail.com,
floe@butterbrot.org, greg@kroah.com, jim-linux@nurd.se,
oliver@neukum.org
Subject: [patch 7/7] usbtouchscreen: fix leaks and check return value of usb_submit_urb()
Date: Tue, 02 Feb 2010 14:42:57 -0800 [thread overview]
Message-ID: <201002022242.o12Mgvev019151@imap1.linux-foundation.org> (raw)
From: Ondrej Zary <linux@rainbow-software.org>
Fix urb and priv leaks in error paths of initialization and NEXIO ack_buf
leak.
Also check usb_submit_urb() return value.
Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Jim Persson <jim-linux@nurd.se>
Cc: Florian Echtler <floe@butterbrot.org>
Cc: Dan Streetman <ddstreet@ieee.org>
Cc: Daniel Ritz <daniel.ritz@gmx.ch>
Cc: Greg KH <greg@kroah.com>
Cc: Oliver Neukum <oliver@neukum.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/input/touchscreen/usbtouchscreen.c | 21 +++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)
diff -puN drivers/input/touchscreen/usbtouchscreen.c~usbtouchscreen-fix-leaks-and-check-return-value-of-usb_submit_urb drivers/input/touchscreen/usbtouchscreen.c
--- a/drivers/input/touchscreen/usbtouchscreen.c~usbtouchscreen-fix-leaks-and-check-return-value-of-usb_submit_urb
+++ a/drivers/input/touchscreen/usbtouchscreen.c
@@ -834,6 +834,7 @@ static void nexio_exit(struct usbtouch_u
usb_kill_urb(priv->ack);
usb_free_urb(priv->ack);
+ kfree(priv->ack_buf);
kfree(priv);
}
@@ -1395,23 +1396,35 @@ static int usbtouch_probe(struct usb_int
err = type->init(usbtouch);
if (err) {
dbg("%s - type->init() failed, err: %d", __func__, err);
- goto out_free_buffers;
+ goto out_free_urb;
}
}
err = input_register_device(usbtouch->input);
if (err) {
dbg("%s - input_register_device failed, err: %d", __func__, err);
- goto out_free_buffers;
+ goto out_exit;
}
usb_set_intfdata(intf, usbtouch);
- if (usbtouch->type->irq_always)
- usb_submit_urb(usbtouch->irq, GFP_KERNEL);
+ if (usbtouch->type->irq_always) {
+ err = usb_submit_urb(usbtouch->irq, GFP_KERNEL);
+ if (err) {
+ err("%s - usb_submit_urb failed with result: %d",
+ __func__, err);
+ input_unregister_device(usbtouch->input);
+ goto out_exit;
+ }
+ }
return 0;
+out_exit:
+ if (type->exit)
+ type->exit(usbtouch);
+out_free_urb:
+ usb_free_urb(usbtouch->irq);
out_free_buffers:
usbtouch_free_buffers(udev, usbtouch);
out_free:
_
reply other threads:[~2010-02-02 22:43 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201002022242.o12Mgvev019151@imap1.linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=daniel.ritz@gmx.ch \
--cc=ddstreet@ieee.org \
--cc=dmitry.torokhov@gmail.com \
--cc=dtor@mail.ru \
--cc=floe@butterbrot.org \
--cc=greg@kroah.com \
--cc=jim-linux@nurd.se \
--cc=linux-input@vger.kernel.org \
--cc=linux@rainbow-software.org \
--cc=oliver@neukum.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.