Blame SOURCES/workaround-crash.patch

4c5df3
diff -up GConf-3.2.6/gconf/gconfd.c.workaround-crash GConf-3.2.6/gconf/gconfd.c
4c5df3
--- GConf-3.2.6/gconf/gconfd.c.workaround-crash	2013-04-15 10:12:54.480753142 -0400
4c5df3
+++ GConf-3.2.6/gconf/gconfd.c	2013-04-15 10:12:53.457736847 -0400
4c5df3
@@ -1076,17 +1076,6 @@ periodic_cleanup_timeout(gpointer data)
4c5df3
 #endif
4c5df3
   drop_old_databases ();
4c5df3
 
4c5df3
-#ifdef HAVE_DBUS
4c5df3
-  if (no_databases_in_use () && gconfd_dbus_client_count () == 0)
4c5df3
-#else
4c5df3
-  if (no_databases_in_use () && client_count () == 0)
4c5df3
-#endif
4c5df3
-    {
4c5df3
-      gconf_log (GCL_INFO, _("GConf server is not in use, shutting down."));
4c5df3
-      gconfd_main_quit ();
4c5df3
-      return FALSE;
4c5df3
-    }
4c5df3
-  
4c5df3
   /* expire old locale cache entries */
4c5df3
   gconfd_locale_cache_expire ();
4c5df3
 
4c5df3
@@ -1105,7 +1094,6 @@ periodic_cleanup_timeout(gpointer data)
4c5df3
   
4c5df3
   return TRUE;
4c5df3
 }
4c5df3
-
4c5df3
 void
4c5df3
 gconfd_need_log_cleanup (void)
4c5df3
 {
4c5df3
@@ -1131,14 +1119,14 @@ gconf_main(void)
4c5df3
     }
4c5df3
   
4c5df3
   main_loops = g_slist_prepend(main_loops, loop);
4c5df3
+  main_loops = g_slist_prepend(main_loops, loop);
4c5df3
 
4c5df3
   g_main_loop_run (loop);
4c5df3
 
4c5df3
   main_loops = g_slist_remove(main_loops, loop);
4c5df3
 
4c5df3
-  if (main_loops == NULL)
4c5df3
+  if (main_loops == NULL && timeout_id != 0)
4c5df3
     {
4c5df3
-      g_assert(timeout_id != 0);
4c5df3
       g_source_remove(timeout_id);
4c5df3
       timeout_id = 0;
4c5df3
     }