From: antirez Date: Thu, 9 Feb 2012 15:36:25 +0000 (+0100) Subject: ziplist.c endianess fixes, chapter 4. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/cab1105c6e4f9f5c3bc82c72a3433e663e9b05cc ziplist.c endianess fixes, chapter 4. --- diff --git a/src/ziplist.c b/src/ziplist.c index 95103dc0..de0ad82e 100644 --- a/src/ziplist.c +++ b/src/ziplist.c @@ -465,7 +465,7 @@ static unsigned char *__ziplistDelete(unsigned char *zl, unsigned char *p, unsig * size of prevlen doesn't have an effect on the *tail* offset. */ tail = zipEntry(p); if (p[tail.headersize+tail.len] != ZIP_END) { - ZIPLIST_TAIL_OFFSET(zl) += + ZIPLIST_TAIL_OFFSET(zl) = intrev32ifbe(intrev32ifbe(ZIPLIST_TAIL_OFFSET(zl))+nextdiff); }