From 74a1a704bf2726260ffbf2686ef8cceb184a6f1a Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Fri, 4 Mar 2011 11:59:44 +0100 Subject: [PATCH] rtpvp8: Fix unitialized variable Makes macosx compiler happy. --- gst/rtp/gstrtpvp8pay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtp/gstrtpvp8pay.c b/gst/rtp/gstrtpvp8pay.c index 0ea5777..b54ec28 100644 --- a/gst/rtp/gstrtpvp8pay.c +++ b/gst/rtp/gstrtpvp8pay.c @@ -127,7 +127,7 @@ gst_rtp_vp8_pay_parse_frame (GstRtpVP8Pay * self, GstBuffer * buffer) gboolean keyframe; guint32 header_size; guint8 version; - guint8 tmp8; + guint8 tmp8 = 0; guint8 *data; guint8 partitions; -- 2.7.4