mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
ssrcdemux: Fix uninitialized variable compiler warning for (pre-) releases too
This commit is contained in:
parent
1a310d558c
commit
b694bfeca3
1 changed files with 1 additions and 1 deletions
|
@ -711,7 +711,7 @@ gst_rtp_ssrc_demux_iterate_internal_links_sink (GstPad * pad)
|
|||
{
|
||||
GstRtpSsrcDemux *demux;
|
||||
GstIterator *it = NULL;
|
||||
const gchar *prefix;
|
||||
const gchar *prefix = NULL;
|
||||
|
||||
demux = GST_RTP_SSRC_DEMUX (gst_pad_get_parent (pad));
|
||||
|
||||
|
|
Loading…
Reference in a new issue