Commit 077203a7 authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab

V4L/DVB (4238): Make sure flags field is initialized when quering a control in pvrusb2

Signed-off-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 4f1a3e5b
...@@ -525,6 +525,7 @@ static int pvr2_v4l2_do_ioctl(struct inode *inode, struct file *file, ...@@ -525,6 +525,7 @@ static int pvr2_v4l2_do_ioctl(struct inode *inode, struct file *file,
} }
strlcpy(vc->name,pvr2_ctrl_get_name(cptr),sizeof(vc->name)); strlcpy(vc->name,pvr2_ctrl_get_name(cptr),sizeof(vc->name));
vc->flags = 0;
vc->default_value = pvr2_ctrl_get_def(cptr); vc->default_value = pvr2_ctrl_get_def(cptr);
switch (pvr2_ctrl_get_type(cptr)) { switch (pvr2_ctrl_get_type(cptr)) {
case pvr2_ctl_enum: case pvr2_ctl_enum:
......
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