Blame SOURCES/workaround-crash.patch

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