glib r7103 - trunk/gio
- From: matthiasc svn gnome org
- To: svn-commits-list gnome org
- Subject: glib r7103 - trunk/gio
- Date: Mon, 30 Jun 2008 02:44:52 +0000 (UTC)
Author: matthiasc
Date: Mon Jun 30 02:44:52 2008
New Revision: 7103
URL: http://svn.gnome.org/viewvc/glib?rev=7103&view=rev
Log:
* giomodule.c (_g_io_modules_ensure_loaded): Don't g_list_prepend
one list to another. Pointed out by Jan Arne Petersen
Modified:
trunk/gio/ChangeLog
trunk/gio/giomodule.c
Modified: trunk/gio/giomodule.c
==============================================================================
--- trunk/gio/giomodule.c (original)
+++ trunk/gio/giomodule.c Mon Jun 30 02:44:52 2008
@@ -341,7 +341,7 @@
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++;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]