提交 fe80a8eb 编写于 作者: R Rich Felker

fix special-case breakage in popen due to reversed argument order

上级 c2d3fd3a
......@@ -39,7 +39,7 @@ FILE *popen(const char *cmd, const char *mode)
* remove the close-on-exec flag in the child without also creating
* a file descriptor leak race condition in the parent. */
if (p[1-op] == 1-op) {
int tmp = fcntl(F_DUPFD_CLOEXEC, 1-op, 0);
int tmp = fcntl(1-op, F_DUPFD_CLOEXEC, 0);
if (tmp < 0) {
e = errno;
goto fail;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册