projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
838951c
)
remove useless failure-check from freopen (can't happen)
author
Rich Felker
<dalias@aerifal.cx>
Thu, 25 Oct 2012 00:03:43 +0000
(20:03 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Thu, 25 Oct 2012 00:03:43 +0000
(20:03 -0400)
src/stdio/freopen.c
patch
|
blob
|
history
diff --git
a/src/stdio/freopen.c
b/src/stdio/freopen.c
index 57c3cd293b986f857bf96a50db2bd26107d57ac4..5b4f126dbddbcf4c9c11c5d177e48345e197be29 100644
(file)
--- a/
src/stdio/freopen.c
+++ b/
src/stdio/freopen.c
@@
-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);