pulse: 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:05:13 +01:00
parent f79de9a420
commit e9613c8512

View file

@ -606,8 +606,8 @@ gst_pulse_device_new (guint device_index, const gchar * device_name,
GstCaps * caps, const gchar * internal_name, GstPulseDeviceType type)
{
GstPulseDevice *gstdev;
const gchar *element;
const gchar *klass;
const gchar *element = NULL;
const gchar *klass = NULL;
g_return_val_if_fail (device_name, NULL);
g_return_val_if_fail (internal_name, NULL);