diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-04-15 14:00:11 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-04-15 14:00:11 -0400 |
commit | b7111f2f01dce9516aea5250e765124300f2fa3a (patch) | |
tree | 25a723baf00892f61d103029a983fec6b60bf550 /spawn.c | |
parent | 1d8bbdc1a59fd5246ec60bc3db1ece055ef83639 (diff) | |
parent | 3dad2125b9048fdc3790d3e7c4770f7174be889c (diff) | |
download | bfs-b7111f2f01dce9516aea5250e765124300f2fa3a.tar.xz |
Merge pull request #73 from markus-oberhumer/safe-read-write
Diffstat (limited to 'spawn.c')
-rw-r--r-- | spawn.c | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -189,12 +189,9 @@ static void bfs_spawn_exec(const char *exe, const struct bfs_spawn *ctx, char ** fail: error = errno; - while (write(pipefd[1], &error, sizeof(error)) < 0) { - if (errno != EINTR) { - // Parent will still see that we exited unsuccessfully, but won't know why - break; - } - } + // In case of write error parent will still see that we exited + // unsuccessfully, but won't know why. + (void) safe_write_all(pipefd[1], &error, sizeof(error)); close(pipefd[1]); _Exit(127); @@ -224,7 +221,7 @@ pid_t bfs_spawn(const char *exe, const struct bfs_spawn *ctx, char **argv, char // Parent close(pipefd[1]); - ssize_t nbytes = read(pipefd[0], &error, sizeof(error)); + ssize_t nbytes = safe_read_all(pipefd[0], &error, sizeof(error)); close(pipefd[0]); if (nbytes == sizeof(error)) { int wstatus; |