From: Sebastian Dröge Date: Tue, 17 May 2011 07:24:08 +0000 (+0200) Subject: rtpssrcdemux: Fix uninitialized variable compiler warning X-Git-Tag: 1.19.3~509^2~7136^2~570 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f05d3e5a50b9142b8b2439940705be4c30e8809;p=platform%2Fupstream%2Fgstreamer.git rtpssrcdemux: Fix uninitialized variable compiler warning --- diff --git a/gst/rtpmanager/gstrtpssrcdemux.c b/gst/rtpmanager/gstrtpssrcdemux.c index 54c14fb8b6..41910b5075 100644 --- a/gst/rtpmanager/gstrtpssrcdemux.c +++ b/gst/rtpmanager/gstrtpssrcdemux.c @@ -722,6 +722,8 @@ gst_rtp_ssrc_demux_iterate_internal_links_sink (GstPad * pad) prefix = "src_"; else if (pad == demux->rtcp_sink) prefix = "rtcp_src_"; + else + g_assert_not_reached (); it = gst_element_iterate_src_pads (GST_ELEMENT (demux));