提交 708c91f4 编写于 作者: R Rich Felker

remove useless failure-check from freopen (can't happen)

上级 838951c9
......@@ -17,8 +17,8 @@ FILE *freopen(const char *restrict filename, const char *restrict mode, FILE *re
if (!filename) {
f2 = fopen("/dev/null", mode);
if (!f2) goto fail;
fl = syscall(SYS_fcntl, f2->fd, F_GETFL, 0);
if (fl < 0 || syscall(SYS_fcntl, f->fd, F_SETFL, fl) < 0)
fl = __syscall(SYS_fcntl, f2->fd, F_GETFL, 0);
if (syscall(SYS_fcntl, f->fd, F_SETFL, fl) < 0)
goto fail2;
} else {
f2 = fopen(filename, mode);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册