mpegtsmux: fix uninitialized variable warning
authorMatthieu Bouron <matthieu.bouron@gmail.com>
Wed, 23 Oct 2013 16:11:20 +0000 (17:11 +0100)
committerOlivier CrĂȘte <olivier.crete@collabora.com>
Fri, 25 Oct 2013 11:26:23 +0000 (12:26 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=710759

gst/mpegtsmux/mpegtsmux_ttxt.c

index 90396c2..3087926 100644 (file)
@@ -104,7 +104,7 @@ mpegtsmux_prepare_teletext (GstBuffer * buf, MpegTsPadData * pad_data,
   GstBuffer *out_buf;
   guint8 *data, *odata;
   gint size, stuff;
-  gboolean add_id;
+  gboolean add_id = FALSE;
   GstMapInfo map, omap;
 
   gst_buffer_map (buf, &map, GST_MAP_READ);