mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
posix: Fix posix_spawn implict check style
This patch fixes the implicit check style add in 2a69f853c
for the
general convention one.
Checked on x86_64.
* sysdeps/unix/sysv/linux/spawni.c (__spawnix): Fix implict checks
style.
This commit is contained in:
@ -381,7 +381,7 @@ __spawnix (pid_t * pid, const char *file,
|
||||
|
||||
close_not_cancel (args.pipe[0]);
|
||||
|
||||
if (!ec && pid)
|
||||
if ((ec == 0) && (pid != NULL))
|
||||
*pid = new_pid;
|
||||
|
||||
__sigprocmask (SIG_SETMASK, &args.oldmask, 0);
|
||||
|
Reference in New Issue
Block a user