ssrcdemux: Fix uninitialized variable compiler warning for (pre-) releases too
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Tue, 17 May 2011 08:47:32 +0000 (10:47 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Tue, 17 May 2011 08:47:32 +0000 (10:47 +0200)
gst/rtpmanager/gstrtpssrcdemux.c

index 41910b5..25ab9c3 100644 (file)
@@ -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));