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:
Tim-Philipp Müller 2014-06-29 17:03:17 +01:00
parent 4edbd4c368
commit f79de9a420

View file

@ -438,8 +438,8 @@ gst_v4l2_device_new (const gchar * device_path, const gchar * device_name,
GstCaps * caps, GstV4l2DeviceType type) GstCaps * caps, GstV4l2DeviceType type)
{ {
GstV4l2Device *gstdev; GstV4l2Device *gstdev;
const gchar *element; const gchar *element = NULL;
const gchar *klass; const gchar *klass = NULL;
g_return_val_if_fail (device_path, NULL); g_return_val_if_fail (device_path, NULL);
g_return_val_if_fail (device_name, NULL); g_return_val_if_fail (device_name, NULL);