From 0f05d3e5a50b9142b8b2439940705be4c30e8809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 17 May 2011 09:24:08 +0200 Subject: [PATCH] rtpssrcdemux: Fix uninitialized variable compiler warning --- gst/rtpmanager/gstrtpssrcdemux.c | 2 ++ 1 file changed, 2 insertions(+) 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));