From 9f87b4c92e3a4d524250dbbb376cd0f59b7d995e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 5 Sep 2012 01:48:47 +0300 Subject: Fix termination from forked processes if exec file failed. Now forked processes silently terminated. --- src/utils/copynpaste.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils/copynpaste.cpp') diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp index 88e2db580..3c7a5b3b7 100644 --- a/src/utils/copynpaste.cpp +++ b/src/utils/copynpaste.cpp @@ -439,7 +439,7 @@ static bool runxsel(std::string& text, const char *p1, const char *p2) if (dup2(fd[0], STDIN_FILENO) != STDIN_FILENO) { close(fd[0]); - exit(1); + _exit(1); } close(fd[0]); } @@ -454,7 +454,7 @@ static bool runxsel(std::string& text, const char *p1, const char *p2) static_cast(nullptr)); } - exit(1); + _exit(1); } // parent -- cgit v1.2.3-70-g09d2