Commit d52288ac authored by Zhaowei Yuan's avatar Zhaowei Yuan Committed by Ben Hutchings

vb2: fix plane index sanity check in vb2_plane_cookie()

commit a9ae4692 upstream.

It's also invalid when plane_no is equal to vb->num_planes
Signed-off-by: default avatarZhaowei Yuan <zhaowei.yuan@samsung.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
[bwh: Backported to 3.2: adjust filename, context]
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent c6b7065b
......@@ -754,7 +754,7 @@ void *vb2_plane_cookie(struct vb2_buffer *vb, unsigned int plane_no)
{
struct vb2_queue *q = vb->vb2_queue;
if (plane_no > vb->num_planes)
if (plane_no >= vb->num_planes)
return NULL;
return call_memop(q, plane_no, cookie, vb->planes[plane_no].mem_priv);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment