Skip to content

Commit

Permalink
zrange now starts to work. zadd still does not support update and wil…
Browse files Browse the repository at this point in the history
…l crash or leak or b000mmmmm
  • Loading branch information
antirez committed Oct 23, 2009
1 parent cc81236 commit 0aad7a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis.c
Original file line number Diff line number Diff line change
Expand Up @@ -3865,7 +3865,7 @@ static void zrangeCommand(redisClient *c) {

addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",rangelen));
for (j = 0; j < rangelen; j++) {
ele = ln->forward[0]->obj;
ele = ln->obj;
addReplyBulkLen(c,ele);
addReply(c,ele);
addReply(c,shared.crlf);
Expand Down

0 comments on commit 0aad7a1

Please sign in to comment.