diff options
Diffstat (limited to 'src/stdio/__stdio_read.c')
-rw-r--r-- | src/stdio/__stdio_read.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/stdio/__stdio_read.c b/src/stdio/__stdio_read.c index 6cd7b073..59473444 100644 --- a/src/stdio/__stdio_read.c +++ b/src/stdio/__stdio_read.c @@ -21,7 +21,6 @@ size_t __stdio_read(FILE *f, unsigned char *buf, size_t len) pthread_cleanup_pop(0); if (cnt <= 0) { f->flags |= F_EOF ^ ((F_ERR^F_EOF) & cnt); - f->rpos = f->rend = 0; return cnt; } if (cnt <= iov[0].iov_len) return cnt; |