From 04bd1ea71d6ce1c7ea02bb2f664cb4e73323da2c Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 25 Apr 2019 21:11:35 +0530 Subject: [PATCH] Revert "Fix #225" This reverts commit 32dde3390acf4f3cfcd9367a8875699e675db97b. --- src/nnn.c | 33 +++++++++++---------------------- 1 file changed, 11 insertions(+), 22 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 5fb992e1..d1544060 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -936,15 +936,7 @@ static int join(pid_t p, uchar flag) if (!(flag & F_NOWAIT)) { /* wait for the child to exit */ do { - /* Exit if parent has exited */ - if (getppid() == 1) { - /* Kill child */ - kill(p, SIGKILL); - - /* Exit */ - _exit(0); - } - } while (waitpid(p, &status, WNOHANG) <= 0); + } while (waitpid(p, &status, 0) == -1); if (WIFEXITED(status)) { status = WEXITSTATUS(status); @@ -1008,8 +1000,6 @@ static int spawn(char *file, char *arg1, char *arg2, const char *dir, uchar flag exitcurses(); pid = xfork(flag); - - /* Child */ if (pid == 0) { if (dir && chdir(dir) == -1) _exit(1); @@ -1025,19 +1015,18 @@ static int spawn(char *file, char *arg1, char *arg2, const char *dir, uchar flag execvp(*argv, argv); _exit(1); + } else { + retstatus = join(pid, flag); + + DPRINTF_D(pid); + if (flag & F_NORMAL) { + nonl(); + noecho(); + } + + free(cmd); } - /* Parent */ - retstatus = join(pid, flag); - - DPRINTF_D(pid); - if (flag & F_NORMAL) { - nonl(); - noecho(); - } - - free(cmd); - return retstatus; }