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
This commit is contained in:
Sebastian Dröge 2015-12-29 17:58:38 +02:00
parent 5fe9a59842
commit bed1f0a0a6

View file

@ -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;