mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 18:26:19 +01:00
gspawn: correct indentation in do_posix_spawn
The indentation was slightly wrong for this section when introduced
in commit 61f54591ac
This commit is contained in:
parent
a8b416f9fe
commit
102bcaffa2
@ -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;
|
||||
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);
|
||||
/* 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_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_spawn_file_actions_init (&file_actions);
|
||||
if (r != 0)
|
||||
goto out_free_spawnattr;
|
||||
|
||||
/* Redirect pipes as required */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user