Commit ebdde620 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

v4l2: fix uninitialized value

parent 099e253c
...@@ -45,6 +45,7 @@ static int SetupStandard (vlc_object_t *obj, int fd, ...@@ -45,6 +45,7 @@ static int SetupStandard (vlc_object_t *obj, int fd,
if (!(input->capabilities & V4L2_IN_CAP_STD)) if (!(input->capabilities & V4L2_IN_CAP_STD))
{ {
msg_Dbg (obj, "no video standard selection"); msg_Dbg (obj, "no video standard selection");
*std = V4L2_STD_UNKNOWN;
return 0; return 0;
} }
......
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