8213017: jspawnhelper: need to handle pipe write failure when sending return code

Reviewed-by: alanb
This commit is contained in:
Thomas Stuefe 2018-10-26 16:49:18 +02:00
parent 91a2c2e340
commit d153c9c259

View File

@ -49,7 +49,10 @@ extern int errno;
#define ERR_ARGS 3
void error (int fd, int err) {
write (fd, &err, sizeof(err));
if (write (fd, &err, sizeof(err)) != sizeof(err)) {
/* Not sure what to do here. I have no one to speak to. */
exit(0x80 + err);
}
exit (1);
}