]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[media] stk1160: Check *nplanes in queue_setup
authorHelen Fornazier <helen.koike@collabora.co.uk>
Tue, 10 May 2016 03:06:14 +0000 (00:06 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 28 Jun 2016 11:05:09 +0000 (08:05 -0300)
If *nplanes is not zero, it should use the requested size if valid

Signed-off-by: Helen Koike <helen.koike@collabora.co.uk>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/usb/stk1160/stk1160-v4l.c

index 77131fd614a5e763e4fcefedfed81a1154889b00..7ddbc0274f127eed30936687d7471c77382a267c 100644 (file)
@@ -680,6 +680,9 @@ static int queue_setup(struct vb2_queue *vq,
        *nbuffers = clamp_t(unsigned int, *nbuffers,
                        STK1160_MIN_VIDEO_BUFFERS, STK1160_MAX_VIDEO_BUFFERS);
 
+       if (*nplanes)
+               return sizes[0] < size ? -EINVAL : 0;
+
        /* This means a packed colorformat */
        *nplanes = 1;