summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2017-02-01 17:01:31 +0100
committerantirez <antirez@gmail.com>2017-02-01 17:01:31 +0100
commit0dbfb1d154b0df28bbdb16a59ae7342d4a3f9281 (patch)
tree8d143e7dadef0b8c64dcf5d14a5c094f890e5855
parentc495d095ae495ea5253443ee4562aaa30681a854 (diff)
downloadredis-0dbfb1d154b0df28bbdb16a59ae7342d4a3f9281.tar.gz
Fix ziplist fix...
-rw-r--r--src/ziplist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ziplist.c b/src/ziplist.c
index 0da1b0ca6..e407937ff 100644
--- a/src/ziplist.c
+++ b/src/ziplist.c
@@ -797,9 +797,9 @@ unsigned char *__ziplistInsert(unsigned char *zl, unsigned char *p, unsigned cha
/* Encode this entry's raw length in the next entry. */
if (forcelarge)
- zipStorePrevEntryLength(p+reqlen,reqlen);
- else
zipStorePrevEntryLengthLarge(p+reqlen,reqlen);
+ else
+ zipStorePrevEntryLength(p+reqlen,reqlen);
/* Update offset for tail */
ZIPLIST_TAIL_OFFSET(zl) =