mount_bsd: Proper exit calls
authorVassili Tchersky <vt+git@vbcy.org>
Mon, 17 Feb 2025 07:54:10 +0000 (08:54 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Tue, 18 Feb 2025 21:32:49 +0000 (22:32 +0100)
Use _exit() instead of exit() inside children

Signed-off-by: Vassili Tchersky <vt+git@vbcy.org>
lib/mount_bsd.c

index 789f61b7acc1820a1a0fb460e3ca0ec0b6a43bda..ba17240ec3be4ee95c7a4e7ae14ba998605536df 100644 (file)
@@ -189,7 +189,7 @@ mount:
                        const char *argv[32];
                        int a = 0;
                        int ret = -1; 
-                       
+
                        if (! fdnam)
                        {
                                ret = asprintf(&fdnam, "%ld", fd);
@@ -197,7 +197,7 @@ mount:
                                {
                                        perror("fuse: failed to assemble mount arguments");
                                        close(fd);
-                                       exit(1);
+                                       _exit(EXIT_FAILURE);
                                }
                        }
 
@@ -212,10 +212,10 @@ mount:
                        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) {