summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-06-29 19:59:53 +0200
committerSebastian Dröge <sebastian@centricular.com>2014-06-29 19:59:53 +0200
commitbbca040336a1477032f2baf675c5750cc7b21960 (patch)
tree918384da7fa1e2dda267f7ee00a08e1c8dcc4745
parent5500dd4a20c45d21795fcb28fc8e5fd15a0f9404 (diff)
downloadgstreamer-plugins-good-bbca040336a1477032f2baf675c5750cc7b21960.tar.gz
rtpssrcdemux: Fix compiler warning when compiling with G_DISABLE_ASSERT
-rw-r--r--gst/rtpmanager/gstrtpssrcdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmanager/gstrtpssrcdemux.c b/gst/rtpmanager/gstrtpssrcdemux.c
index 5395567fc..0f4b23cae 100644
--- a/gst/rtpmanager/gstrtpssrcdemux.c
+++ b/gst/rtpmanager/gstrtpssrcdemux.c
@@ -215,7 +215,7 @@ forward_initial_events (GstRtpSsrcDemux * demux, guint32 ssrc, GstPad * pad,
PadType padtype)
{
struct ForwardStickyEventData fdata;
- GstPad *sinkpad;
+ GstPad *sinkpad = NULL;
if (padtype == RTP_PAD)
sinkpad = demux->rtp_sink;