aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/svm/svm_fifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svm/svm_fifo.c b/src/svm/svm_fifo.c
index ff941a7a6dd..0c08dba7aa2 100644
--- a/src/svm/svm_fifo.c
+++ b/src/svm/svm_fifo.c
@@ -1289,7 +1289,7 @@ svm_fifo_segments (svm_fifo_t * f, u32 offset, svm_fifo_seg_t * fs,
head_pos = start - c->start_byte;
fs[0].data = c->data + head_pos;
- fs[0].len = clib_min (c->length - head_pos, cursize - offset);
+ fs[0].len = clib_min (c->length - head_pos, to_read);
n_bytes = fs[0].len;
while (n_bytes < to_read && fs_index < n_segs)