gdm r6190 - in branches/gnome-2-20: . common



Author: bcameron
Date: Wed Apr 30 10:35:40 2008
New Revision: 6190
URL: http://svn.gnome.org/viewvc/gdm?rev=6190&view=rev

Log:
2008-04-30 Brian Cameron <brian cameron sun com>

        * common/gdm-config.c:  Fix bug that was causing GDM to crash
          when freeing memory in the keyfile code when exiting (such as when
          shutting down the system).  Fixes bug #517526.


Modified:
   branches/gnome-2-20/ChangeLog
   branches/gnome-2-20/common/gdm-config.c

Modified: branches/gnome-2-20/common/gdm-config.c
==============================================================================
--- branches/gnome-2-20/common/gdm-config.c	(original)
+++ branches/gnome-2-20/common/gdm-config.c	Wed Apr 30 10:35:40 2008
@@ -593,7 +593,7 @@
 	g_return_if_fail (config != NULL);
 
 	g_ptr_array_foreach (config->entries, (GFunc)gdm_config_entry_free, NULL);
-	g_ptr_array_free (config->entries, TRUE);
+	g_ptr_array_free (config->entries, FALSE);
 
 	g_free (config->mandatory_filename);
 	g_free (config->default_filename);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]