aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/uvc/uvc_v4l2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/media/video/uvc/uvc_v4l2.c b/drivers/media/video/uvc/uvc_v4l2.c
index 30781b82b6b..2a80caa54fb 100644
--- a/drivers/media/video/uvc/uvc_v4l2.c
+++ b/drivers/media/video/uvc/uvc_v4l2.c
@@ -673,11 +673,17 @@ static long uvc_v4l2_do_ioctl(struct file *file, unsigned int cmd, void *arg)
673 { 673 {
674 struct v4l2_fmtdesc *fmt = arg; 674 struct v4l2_fmtdesc *fmt = arg;
675 struct uvc_format *format; 675 struct uvc_format *format;
676 enum v4l2_buf_type type = fmt->type;
677 __u32 index = fmt->index;
676 678
677 if (fmt->type != video->streaming->type || 679 if (fmt->type != video->streaming->type ||
678 fmt->index >= video->streaming->nformats) 680 fmt->index >= video->streaming->nformats)
679 return -EINVAL; 681 return -EINVAL;
680 682
683 memset(fmt, 0, sizeof(*fmt));
684 fmt->index = index;
685 fmt->type = type;
686
681 format = &video->streaming->format[fmt->index]; 687 format = &video->streaming->format[fmt->index];
682 fmt->flags = 0; 688 fmt->flags = 0;
683 if (format->flags & UVC_FMT_FLAG_COMPRESSED) 689 if (format->flags & UVC_FMT_FLAG_COMPRESSED)