From 135067a0b43b8cf2dcc5554ada616b4f476eb5bf Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 21 Mar 2011 20:33:43 +1100 Subject: [PATCH] Yet more #6 BE fixes. --- stream.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stream.c b/stream.c index 6032b78..d7145ad 100644 --- a/stream.c +++ b/stream.c @@ -1557,6 +1557,9 @@ fill_another: if (unlikely(read_buf(control, sinfo->fd, blocksalt, SALT_LEN))) return -1; } + c_len = le64toh(c_len); + u_len = le64toh(u_len); + last_head = le64toh(last_head); padded_len = MAX(c_len, MIN_SIZE); fsync(control->fd_out);