aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/io.c b/io.c
index b2496b7b1f..f3c7ed6081 100644
--- a/io.c
+++ b/io.c
@@ -1120,7 +1120,7 @@ remain_size(fptr)
OpenFile *fptr;
{
struct stat st;
- off_t siz = BUFSIZ;
+ off_t siz = READ_DATA_PENDING_COUNT(fptr);
off_t pos;
if (fstat(fptr->fd, &st) == 0 && S_ISREG(st.st_mode)
@@ -1129,14 +1129,18 @@ remain_size(fptr)
#endif
)
{
- pos = io_tell(fptr);
+ io_fflush(fptr);
+ pos = lseek(fptr->fd, 0, SEEK_CUR);
if (st.st_size >= pos && pos >= 0) {
- siz = st.st_size - pos + 1;
+ siz += st.st_size - pos + 1;
if (siz > LONG_MAX) {
rb_raise(rb_eIOError, "file too big for single read");
}
}
}
+ else {
+ siz += BUFSIZ;
+ }
return (long)siz;
}