diff options
author | Huzaifa Sidhpurwala <huzaifas@redhat.com> | 2011-05-09 07:32:24 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-05-20 19:55:57 -0300 |
commit | cecc2471ea719a359b253449781a584e319d8909 (patch) | |
tree | 08a9f436d7433c5920a26927fb9f3ede688fe4d9 /drivers/media | |
parent | bbe880b4a7c66ba14b67ee7acfbaaaa1c7be2d03 (diff) | |
download | talos-op-linux-cecc2471ea719a359b253449781a584e319d8909.tar.gz talos-op-linux-cecc2471ea719a359b253449781a584e319d8909.zip |
[media] Prevent null pointer derefernce of pdev
Make sure pdev is not dereferenced when it is null
Signed-off-by: Huzaifa Sidhpurwala <huzaifas@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/pwc/pwc-if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pwc/pwc-if.c b/drivers/media/video/pwc/pwc-if.c index 780af5f81642..356cd42b593b 100644 --- a/drivers/media/video/pwc/pwc-if.c +++ b/drivers/media/video/pwc/pwc-if.c @@ -1850,7 +1850,6 @@ static void usb_pwc_disconnect(struct usb_interface *intf) } else { /* Device is closed, so we can safely unregister it */ PWC_DEBUG_PROBE("Unregistering video device in disconnect().\n"); - pwc_cleanup(pdev); disconnect_out: /* search device_hint[] table if we occupy a slot, by any chance */ @@ -1860,6 +1859,7 @@ disconnect_out: } mutex_unlock(&pdev->modlock); + pwc_cleanup(pdev); } |