summaryrefslogtreecommitdiff
path: root/gst/rtp/gstrtpqdmdepay.c
diff options
context:
space:
mode:
authorEdward Hervey <edward@collabora.com>2011-12-05 18:39:59 +0100
committerEdward Hervey <edward@collabora.com>2011-12-05 18:39:59 +0100
commit04520cbe9a6c303f6e89c61b6dd9b060f85752a4 (patch)
tree96039e092607c871f29cafdc0baea7c8ec794d2d /gst/rtp/gstrtpqdmdepay.c
parent1538803ac46f57f6b0c1ccc7aee9ee1ea25e0e81 (diff)
rtp: Initialize GstRTPBuffer before usage
Diffstat (limited to 'gst/rtp/gstrtpqdmdepay.c')
-rw-r--r--gst/rtp/gstrtpqdmdepay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtp/gstrtpqdmdepay.c b/gst/rtp/gstrtpqdmdepay.c
index 58143b577..cc5aa4395 100644
--- a/gst/rtp/gstrtpqdmdepay.c
+++ b/gst/rtp/gstrtpqdmdepay.c
@@ -232,7 +232,7 @@ gst_rtp_qdm2_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
GstRtpQDM2Depay *rtpqdm2depay;
GstBuffer *outbuf = NULL;
guint16 seq;
- GstRTPBuffer rtp;
+ GstRTPBuffer rtp = { NULL };
rtpqdm2depay = GST_RTP_QDM2_DEPAY (depayload);