[glib: 1/2] gspawn: correct indentation in do_posix_spawn
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib: 1/2] gspawn: correct indentation in do_posix_spawn
- Date: Fri, 13 Jul 2018 12:22:37 +0000 (UTC)
commit 102bcaffa24b333beb11550db1b5026ed198ff3f
Author: Thomas Hindoe Paaboel Andersen <phomes gmail com>
Date: Fri Jul 13 13:37:11 2018 +0200
gspawn: correct indentation in do_posix_spawn
The indentation was slightly wrong for this section when introduced
in commit 61f54591acdfe69315cef6d1aa6d3bf1ff763082
glib/gspawn.c | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
---
diff --git a/glib/gspawn.c b/glib/gspawn.c
index dfd97b1a8..1ab33077c 100644
--- a/glib/gspawn.c
+++ b/glib/gspawn.c
@@ -1417,24 +1417,24 @@ do_posix_spawn (gchar **argv,
GINT_TO_POINTER (child_close_fds[i]));
}
- r = posix_spawnattr_setflags (&attr, POSIX_SPAWN_SETSIGDEF);
- if (r != 0)
- goto out_free_spawnattr;
-
- /* Reset some signal handlers that we may use */
- sigemptyset (&mask);
- sigaddset (&mask, SIGCHLD);
- sigaddset (&mask, SIGINT);
- sigaddset (&mask, SIGTERM);
- sigaddset (&mask, SIGHUP);
-
- r = posix_spawnattr_setsigdefault (&attr, &mask);
- if (r != 0)
- goto out_free_spawnattr;
-
- r = posix_spawn_file_actions_init (&file_actions);
- if (r != 0)
- goto out_free_spawnattr;
+ r = posix_spawnattr_setflags (&attr, POSIX_SPAWN_SETSIGDEF);
+ if (r != 0)
+ goto out_free_spawnattr;
+
+ /* Reset some signal handlers that we may use */
+ sigemptyset (&mask);
+ sigaddset (&mask, SIGCHLD);
+ sigaddset (&mask, SIGINT);
+ sigaddset (&mask, SIGTERM);
+ sigaddset (&mask, SIGHUP);
+
+ r = posix_spawnattr_setsigdefault (&attr, &mask);
+ if (r != 0)
+ goto out_free_spawnattr;
+
+ r = posix_spawn_file_actions_init (&file_actions);
+ if (r != 0)
+ goto out_free_spawnattr;
/* Redirect pipes as required */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]