Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-01-30 19:52:32 +0400
committerFelix Fietkau <nbd@openwrt.org>2013-01-30 19:52:32 +0400
commite72b65c89936aafe16c28255ce326aac77f876a7 (patch)
treea84414806330770c1babd0f7fd153d03a1355e2c /ustream.h
parent0bc317aa4d9af44806c28ca286d79a8b5a92b2b8 (diff)
ustream: fix ustream_read_buf_full() for multiple read buffers
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'ustream.h')
-rw-r--r--ustream.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ustream.h b/ustream.h
index 15f1ba1..24a18e3 100644
--- a/ustream.h
+++ b/ustream.h
@@ -171,7 +171,8 @@ static inline int ustream_pending_data(struct ustream *s, bool write)
static inline bool ustream_read_buf_full(struct ustream *s)
{
- return ustream_pending_data(s, false) == s->r.buffer_len;
+ return ustream_pending_data(s, false) == s->r.buffer_len &&
+ s->r.buffers == s->r.max_buffers;
}
/*** --- functions only used by ustream implementations --- ***/