jpegformat: Fix unitialized variable on macosx

This commit is contained in:
Edward Hervey 2011-04-16 11:18:44 +02:00
parent 19bd1e6d55
commit b18bf6a018

View file

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