From bed1f0a0a6f10e69ef14e29b7e16a404f3e29fd9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 29 Dec 2015 17:58:38 +0200 Subject: [PATCH] vpxdec: Initialize buffer variable to NULL False positive but trivial to fix and possibly causing compiler warnings at some point in the future too. CID 1346535 --- ext/vpx/gstvpxdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/vpx/gstvpxdec.c b/ext/vpx/gstvpxdec.c index fc75a7b..1d2ddca 100644 --- a/ext/vpx/gstvpxdec.c +++ b/ext/vpx/gstvpxdec.c @@ -401,7 +401,7 @@ gst_vpx_dec_get_buffer_cb (gpointer priv, gsize min_size, vpx_codec_frame_buffer_t * fb) { GstVPXDec *dec = priv; - GstBuffer *buffer; + GstBuffer *buffer = NULL; struct Frame *frame; GstFlowReturn ret; -- 2.7.4