mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
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:
parent
f79de9a420
commit
e9613c8512
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue