Don't forget to initialize g_system_config_dirs. (#160213, Frederic
authorMatthias Clasen <mclasen@redhat.com>
Thu, 2 Dec 2004 14:27:31 +0000 (14:27 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 2 Dec 2004 14:27:31 +0000 (14:27 +0000)
2004-12-02  Matthias Clasen  <mclasen@redhat.com>

* glib/gutils.c (g_get_system_config_dirs): Don't forget to
initialize g_system_config_dirs.  (#160213, Frederic Crozat)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gutils.c

index bba99ec..39dc772 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gutils.c (g_get_system_config_dirs): Don't forget to 
+       initialize g_system_config_dirs.  (#160213, Frederic Crozat)
+
 Wed Dec  1 17:04:37 2004  Manish Singh  <yosh@gimp.org>
 
        * glib/gstring.h (g_string_append_c_inline): actually enable (and
index bba99ec..39dc772 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gutils.c (g_get_system_config_dirs): Don't forget to 
+       initialize g_system_config_dirs.  (#160213, Frederic Crozat)
+
 Wed Dec  1 17:04:37 2004  Manish Singh  <yosh@gimp.org>
 
        * glib/gstring.h (g_string_append_c_inline): actually enable (and
index bba99ec..39dc772 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gutils.c (g_get_system_config_dirs): Don't forget to 
+       initialize g_system_config_dirs.  (#160213, Frederic Crozat)
+
 Wed Dec  1 17:04:37 2004  Manish Singh  <yosh@gimp.org>
 
        * glib/gstring.h (g_string_append_c_inline): actually enable (and
index bba99ec..39dc772 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gutils.c (g_get_system_config_dirs): Don't forget to 
+       initialize g_system_config_dirs.  (#160213, Frederic Crozat)
+
 Wed Dec  1 17:04:37 2004  Manish Singh  <yosh@gimp.org>
 
        * glib/gstring.h (g_string_append_c_inline): actually enable (and
index bba99ec..39dc772 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gutils.c (g_get_system_config_dirs): Don't forget to 
+       initialize g_system_config_dirs.  (#160213, Frederic Crozat)
+
 Wed Dec  1 17:04:37 2004  Manish Singh  <yosh@gimp.org>
 
        * glib/gstring.h (g_string_append_c_inline): actually enable (and
index 49a3ac8..1c2523f 100644 (file)
@@ -1668,6 +1668,8 @@ g_get_system_config_dirs (void)
           conf_dirs = "/etc/xdg";
 #endif
       conf_dir_vector = g_strsplit (conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
+
+      g_system_config_dirs = conf_dir_vector;
     }
   else
     conf_dir_vector = g_system_config_dirs;