mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
jpegparse: Fix unitialized variable on macosx 10.5
This commit is contained in:
parent
3b78cc5eca
commit
69a40a1591
1 changed files with 1 additions and 1 deletions
|
@ -566,7 +566,7 @@ gst_jpeg_parse_read_header (GstJpegParse * parse, GstBuffer * buffer)
|
|||
goto error;
|
||||
|
||||
if (!strcmp (id_str, "http://ns.adobe.com/xap/1.0/")) {
|
||||
const guint8 *xmp_data;
|
||||
const guint8 *xmp_data = NULL;
|
||||
guint xmp_size = size - 2 - 29;
|
||||
GstTagList *tags;
|
||||
GstBuffer *buf;
|
||||
|
|
Loading…
Reference in a new issue