[media] vivi: fix ENUM_FRAMEINTERVALS implementation
authorHans Verkuil <hans.verkuil@cisco.com>
Tue, 25 Feb 2014 10:15:54 +0000 (07:15 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Tue, 11 Mar 2014 09:56:45 +0000 (06:56 -0300)
This function never checked if width and height are correct. Add such
a check so the v4l2-compliance tool returns OK again for vivi.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/platform/vivi.c

index cfe7548..3890f4f 100644 (file)
@@ -1121,7 +1121,11 @@ static int vidioc_enum_frameintervals(struct file *file, void *priv,
        if (!fmt)
                return -EINVAL;
 
-       /* regarding width & height - we support any */
+       /* check for valid width/height */
+       if (fival->width < 48 || fival->width > MAX_WIDTH || (fival->width & 3))
+               return -EINVAL;
+       if (fival->height < 32 || fival->height > MAX_HEIGHT)
+               return -EINVAL;
 
        fival->type = V4L2_FRMIVAL_TYPE_CONTINUOUS;