forked from Minki/linux
V4L/DVB (9579): v4l core: a few get ioctls were lacking memory clean
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
74d83fa024
commit
a56a18c3ed
@ -1479,9 +1479,15 @@ static int __video_do_ioctl(struct file *file,
|
|||||||
case VIDIOC_G_CROP:
|
case VIDIOC_G_CROP:
|
||||||
{
|
{
|
||||||
struct v4l2_crop *p = arg;
|
struct v4l2_crop *p = arg;
|
||||||
|
__u32 type;
|
||||||
|
|
||||||
if (!ops->vidioc_g_crop)
|
if (!ops->vidioc_g_crop)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
type = p->type;
|
||||||
|
memset(p, 0, sizeof(*p));
|
||||||
|
p->type = type;
|
||||||
|
|
||||||
dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
|
dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
|
||||||
ret = ops->vidioc_g_crop(file, fh, p);
|
ret = ops->vidioc_g_crop(file, fh, p);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
@ -1502,10 +1508,16 @@ static int __video_do_ioctl(struct file *file,
|
|||||||
case VIDIOC_CROPCAP:
|
case VIDIOC_CROPCAP:
|
||||||
{
|
{
|
||||||
struct v4l2_cropcap *p = arg;
|
struct v4l2_cropcap *p = arg;
|
||||||
|
__u32 type;
|
||||||
|
|
||||||
/*FIXME: Should also show v4l2_fract pixelaspect */
|
/*FIXME: Should also show v4l2_fract pixelaspect */
|
||||||
if (!ops->vidioc_cropcap)
|
if (!ops->vidioc_cropcap)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
type = p->type;
|
||||||
|
memset(p, 0, sizeof(*p));
|
||||||
|
p->type = type;
|
||||||
|
|
||||||
dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
|
dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
|
||||||
ret = ops->vidioc_cropcap(file, fh, p);
|
ret = ops->vidioc_cropcap(file, fh, p);
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
@ -1520,6 +1532,9 @@ static int __video_do_ioctl(struct file *file,
|
|||||||
|
|
||||||
if (!ops->vidioc_g_jpegcomp)
|
if (!ops->vidioc_g_jpegcomp)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
memset(p, 0, sizeof(*p));
|
||||||
|
|
||||||
ret = ops->vidioc_g_jpegcomp(file, fh, p);
|
ret = ops->vidioc_g_jpegcomp(file, fh, p);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
dbgarg(cmd, "quality=%d, APPn=%d, "
|
dbgarg(cmd, "quality=%d, APPn=%d, "
|
||||||
|
Loading…
Reference in New Issue
Block a user