avidemux: Fix unitialized variable.
authorEdward Hervey <bilboed@bilboed.com>
Thu, 11 Mar 2010 16:02:44 +0000 (17:02 +0100)
committerEdward Hervey <bilboed@bilboed.com>
Thu, 11 Mar 2010 16:04:41 +0000 (17:04 +0100)
gst/avi/gstavidemux.c

index 8303f5cf25e030b84ba31aee157c3ef1d6a9321c..d9e26d7296f2d67d71dd3e2f29c43401863d191d 100644 (file)
@@ -4296,7 +4296,7 @@ gst_avi_demux_handle_seek_push (GstAviDemux * avi, GstPad * pad,
 {
   /* check for having parsed index already */
   if (!avi->have_index) {
-    guint64 offset;
+    guint64 offset = 0;
     gboolean building_index;
 
     GST_OBJECT_LOCK (avi);