v4l2: fix compiler warnings when compiling with -DG_DISABLE_ASSERT
Compiler complains about uninitialised variables in the impossible 'default' code path in device provider source/sink switch-case.
This commit is contained in:
parent
4edbd4c368
commit
f79de9a420
@ -438,8 +438,8 @@ gst_v4l2_device_new (const gchar * device_path, const gchar * device_name,
|
||||
GstCaps * caps, GstV4l2DeviceType type)
|
||||
{
|
||||
GstV4l2Device *gstdev;
|
||||
const gchar *element;
|
||||
const gchar *klass;
|
||||
const gchar *element = NULL;
|
||||
const gchar *klass = NULL;
|
||||
|
||||
g_return_val_if_fail (device_path, NULL);
|
||||
g_return_val_if_fail (device_name, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user