Use _exit() instead of exit() inside children
Signed-off-by: Vassili Tchersky <vt+git@vbcy.org>
const char *argv[32];
int a = 0;
int ret = -1;
-
+
if (! fdnam)
{
ret = asprintf(&fdnam, "%ld", fd);
{
perror("fuse: failed to assemble mount arguments");
close(fd);
- exit(1);
+ _exit(EXIT_FAILURE);
}
}
execvp(mountprog, (char **) argv);
perror("fuse: failed to exec mount program");
free(fdnam);
- exit(1);
+ _exit(EXIT_FAILURE);
}
- exit(0);
+ _exit(EXIT_SUCCESS);
}
if (waitpid(cpid, &status, 0) == -1 || WEXITSTATUS(status) != 0) {