From e542177c656664a3872b1abfeed3af866b1f1c9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 19 May 2014 09:08:33 +0200 Subject: [PATCH] omxvideodec: Make output buffer pointer always initialized CID 1214605 --- omx/gstomxvideodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c index 079f0a9..53e3db4 100644 --- a/omx/gstomxvideodec.c +++ b/omx/gstomxvideodec.c @@ -1303,7 +1303,7 @@ gst_omx_video_dec_loop (GstOMXVideoDec * self) flow_ret = gst_video_decoder_drop_frame (GST_VIDEO_DECODER (self), frame); frame = NULL; } else if (!frame && (buf->omx_buf->nFilledLen > 0 || buf->eglimage)) { - GstBuffer *outbuf; + GstBuffer *outbuf = NULL; /* This sometimes happens at EOS or if the input is not properly framed, * let's handle it gracefully by allocating a new buffer for the current -- 2.7.4