summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/stream/stream.c b/stream/stream.c
index 7d093e1913..e0dfbd33fd 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -342,6 +342,7 @@ static int stream_read_unbuffered(stream_t *s, void *buf, int len)
// When reading succeeded we are obviously not at eof.
s->eof = 0;
s->pos += res;
+ s->total_unbuffered_read_bytes += res;
return res;
}