X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fpopen.c;h=590f9843bf402b7d91c7b415b7ddd46af70c7802;hb=35ae1e147a8fe5c9003320f4a76edf8fb4dbf096;hp=1460e9edbb818a9bdea37a42fb242d1b8b44f706;hpb=ae2b15bacfbcc6cc3eaaedead0ae73b0eb8ba19c;p=gnulib.git diff --git a/lib/popen.c b/lib/popen.c index 1460e9edb..590f9843b 100644 --- a/lib/popen.c +++ b/lib/popen.c @@ -59,7 +59,7 @@ rpl_popen (const char *filename, const char *mode) the fd leaks into subsequent popen calls. We could work around this by maintaining a list of all fd's opened by popen, and temporarily marking them cloexec around the real popen call, but - we would also have to override pclose, and the bookkeepping seems + we would also have to override pclose, and the bookkeeping seems extreme given that cygwin 1.7 no longer has the bug. */ FILE *result; int cloexec0 = fcntl (STDIN_FILENO, F_GETFD);