mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 22:38:04 +00:00
07e8c30da9
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From d887b7e4224fa03f080ab6ede038eee8aac4c221 Mon Sep 17 00:00:00 2001
|
|
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
Date: Tue, 7 Dec 2010 12:57:25 +0100
|
|
Subject: [PATCH 34/43] v4l: Fix a use-before-set in the control framework
|
|
|
|
v4l2_queryctrl sets the step value based on the control type. That would
|
|
be fine if it used the control type stored in the V4L2 kernel control
|
|
object, not the one stored in the userspace ioctl structure that has
|
|
just been memset to 0. Fix this.
|
|
|
|
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
|
|
---
|
|
drivers/media/video/v4l2-ctrls.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/drivers/media/video/v4l2-ctrls.c b/drivers/media/video/v4l2-ctrls.c
|
|
index 9d2502c..5f74fec 100644
|
|
--- a/drivers/media/video/v4l2-ctrls.c
|
|
+++ b/drivers/media/video/v4l2-ctrls.c
|
|
@@ -1338,7 +1338,7 @@ int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc)
|
|
qc->minimum = ctrl->minimum;
|
|
qc->maximum = ctrl->maximum;
|
|
qc->default_value = ctrl->default_value;
|
|
- if (qc->type == V4L2_CTRL_TYPE_MENU)
|
|
+ if (ctrl->type == V4L2_CTRL_TYPE_MENU)
|
|
qc->step = 1;
|
|
else
|
|
qc->step = ctrl->step;
|
|
--
|
|
1.6.6.1
|
|
|