mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 04:52:28 +00:00
jpegformat: Fix unitialized variable on macosx
This commit is contained in:
parent
19bd1e6d55
commit
b18bf6a018
1 changed files with 1 additions and 1 deletions
|
@ -607,7 +607,7 @@ extract_and_queue_tags (GstJpegParse * parse, guint size, guint8 * data,
|
|||
static inline gboolean
|
||||
gst_jpeg_parse_app1 (GstJpegParse * parse, GstByteReader * reader)
|
||||
{
|
||||
guint16 size;
|
||||
guint16 size = 0;
|
||||
const gchar *id_str;
|
||||
const guint8 *data = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue