[Goodies-commits] r6101 - in xfce4-dict/trunk: . lib

Enrico Troeger enrico at xfce.org
Sat Nov 15 11:19:14 CET 2008


Author: enrico
Date: 2008-11-15 10:19:14 +0000 (Sat, 15 Nov 2008)
New Revision: 6101

Modified:
   xfce4-dict/trunk/ChangeLog
   xfce4-dict/trunk/lib/spell.c
Log:
Avoid leaving zombie processes when using spell checking (bug 4615).

Modified: xfce4-dict/trunk/ChangeLog
===================================================================
--- xfce4-dict/trunk/ChangeLog	2008-11-14 19:10:16 UTC (rev 6100)
+++ xfce4-dict/trunk/ChangeLog	2008-11-15 10:19:14 UTC (rev 6101)
@@ -1,3 +1,8 @@
+2008-11-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * Avoid leaving zombie processes when using spell checking (bug 4615).
+
+
 2008-11-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * Change bugreport address and rewrite the output of '--version'.

Modified: xfce4-dict/trunk/lib/spell.c
===================================================================
--- xfce4-dict/trunk/lib/spell.c	2008-11-14 19:10:16 UTC (rev 6100)
+++ xfce4-dict/trunk/lib/spell.c	2008-11-15 10:19:14 UTC (rev 6101)
@@ -198,8 +198,7 @@
 		argv[3] = g_strdup(dd->spell_dictionary);
 		argv[4] = NULL;
 
-		if (g_spawn_async_with_pipes(NULL, argv, NULL,
-				G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, NULL,
+		if (g_spawn_async_with_pipes(NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL,
 				&stdin_fd, &stdout_fd, &stderr_fd, &error))
 		{
 			iod = g_new(iodata, 1);




More information about the Goodies-commits mailing list