mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
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:
parent
5fe9a59842
commit
bed1f0a0a6
1 changed files with 1 additions and 1 deletions
|
@ -401,7 +401,7 @@ gst_vpx_dec_get_buffer_cb (gpointer priv, gsize min_size,
|
||||||
vpx_codec_frame_buffer_t * fb)
|
vpx_codec_frame_buffer_t * fb)
|
||||||
{
|
{
|
||||||
GstVPXDec *dec = priv;
|
GstVPXDec *dec = priv;
|
||||||
GstBuffer *buffer;
|
GstBuffer *buffer = NULL;
|
||||||
struct Frame *frame;
|
struct Frame *frame;
|
||||||
GstFlowReturn ret;
|
GstFlowReturn ret;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue