* giomodule.c (_g_io_modules_ensure_loaded): Don't g_list_prepend
one list to another. Pointed out by Jan Arne Petersen
svn path=/trunk/; revision=7103
+2008-06-29 Matthias Clasen <mclasen@redhat.com>
+
+ Bug 540802 – g_list_prepend doesn't concat lists
+
+ * giomodule.c (_g_io_modules_ensure_loaded): Don't g_list_prepend
+ one list to another. Pointed out by Jan Arne Petersen
+
2008-06-28 Michael Natterer <mitch@imendio.com>
* gfileicon.c: remove semicolons from G_IMPLEMENT_INTERFACE().
while (paths[i] != NULL)
{
- modules = g_list_prepend (modules, g_io_modules_load_all_in_directory (paths[i]));
+ modules = g_list_concat (modules, g_io_modules_load_all_in_directory (paths[i]));
i++;
}