Fix the recent fdwalk()-related changes to not break mapping-test.
authorMatthias Clasen <matthiasc@src.gnome.org>
Sun, 17 Dec 2006 17:45:03 +0000 (17:45 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 17 Dec 2006 17:45:03 +0000 (17:45 +0000)
        * glib/gspawn.c: Fix the recent fdwalk()-related changes
        to not break mapping-test.  (#286838, Marco Barisione)

ChangeLog
glib/gspawn.c

index c29503b..f34c77b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-12-17  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/gspawn.c: Fix the recent fdwalk()-related changes
+       to not break mapping-test.  (#286838, Marco Barisione)
+
        * glib/gstring.c (g_string_chunk_new): Don't shadow size.
        (#386760, Kazuki IWAMOTO)
 
index 9cff4ed..33764f9 100644 (file)
@@ -853,11 +853,13 @@ write_err_and_exit (gint fd, gint msg)
   _exit (1);
 }
 
-static void
+static int
 set_cloexec (void *data, gint fd)
 {
-  if (fd > 2)
+  if (fd >= GPOINTER_TO_INT (data))
     fcntl (fd, F_SETFD, FD_CLOEXEC);
+
+  return 0;
 }
 
 #ifndef HAVE_FDWALK
@@ -926,12 +928,12 @@ do_exec (gint                  child_err_report_fd,
    */
   if (close_descriptors)
     {
-      fdwalk (set_cloexec, NULL);
+      fdwalk (set_cloexec, GINT_TO_POINTER(3));
     }
   else
     {
       /* We need to do child_err_report_fd anyway */
-      set_cloexec (NULL, child_err_report_fd);
+      set_cloexec (GINT_TO_POINTER(0), child_err_report_fd);
     }
   
   /* Redirect pipes as required */