mxfmux: Fix uninitialized variable compiler warning
authorTristan Matthews <le.businessman@gmail.com>
Sun, 10 May 2009 08:40:36 +0000 (10:40 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sun, 10 May 2009 08:41:41 +0000 (10:41 +0200)
This will always be set to something but gcc didn't detect
this. Fixes bug #582013.

gst/mxf/mxfmux.c

index 7fa7a5f..fdc1bc6 100644 (file)
@@ -932,7 +932,7 @@ gst_mxf_mux_create_metadata (GstMXFMux * mux)
   /* Sort descriptors at the correct places */
   {
     GList *l;
-    GList *descriptors;
+    GList *descriptors = NULL;
 
     for (l = mux->metadata_list; l; l = l->next) {
       MXFMetadataBase *m = l->data;
@@ -946,6 +946,8 @@ gst_mxf_mux_create_metadata (GstMXFMux * mux)
       }
     }
 
+    g_assert (descriptors != NULL);
+
     for (l = mux->metadata_list; l; l = l->next) {
       MXFMetadataBase *m = l->data;
       GList *s;