mpegtsdemux: fix uninitialized variable warning

https://bugzilla.gnome.org/show_bug.cgi?id=710759
This commit is contained in:
Matthieu Bouron 2013-10-23 16:58:49 +01:00 committed by Olivier Crête
parent b05a1f75fd
commit 84fbc08c25

View file

@ -728,7 +728,7 @@ out:
static gboolean
mpegts_packetizer_sync (MpegTSPacketizer2 * packetizer)
{
gboolean found;
gboolean found = FALSE;
guint8 *data;
guint packet_size;
gsize size, sync_offset, i;