Skip to content

Commit

Permalink
V4L/DVB (6810): media: video: usbvision: add mutex_unlock() to error …
Browse files Browse the repository at this point in the history
…paths

There are a few error paths which don't unlock the usbvision->lock.

So I've added mutex_unlock() calls to fix those paths.

Signed-off-by: Daniel Walker <dwalker@mvista.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Thierry MERLE <thierry.merle@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Daniel Walker authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 7cd355e commit 0991112
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/media/video/usbvision/usbvision-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -1290,6 +1290,7 @@ static int usbvision_radio_open(struct inode *inode, struct file *file)
errCode = usbvision_set_alternate(usbvision);
if (errCode < 0) {
usbvision->last_error = errCode;
mutex_unlock(&usbvision->lock);
return -EBUSY;
}

Expand Down Expand Up @@ -1807,6 +1808,7 @@ static int __devinit usbvision_probe(struct usb_interface *intf,
usbvision->num_alt,GFP_KERNEL);
if (usbvision->alt_max_pkt_size == NULL) {
err("usbvision: out of memory!\n");
mutex_unlock(&usbvision->lock);
return -ENOMEM;
}

Expand Down

0 comments on commit 0991112

Please sign in to comment.