]> git.saurik.com Git - redis.git/blobdiff - src/t_zset.c
Use specialized function to add multi bulk reply length
[redis.git] / src / t_zset.c
index d25b1a669996347b064fa46f469bff99bd1fbba8..7de63158d573e3590d99bcf645547b61dcc720c9 100644 (file)
@@ -782,8 +782,7 @@ void zrangeGenericCommand(redisClient *c, int reverse) {
     }
 
     /* Return the result in form of a multi-bulk reply */
-    addReplySds(c,sdscatprintf(sdsempty(),"*%d\r\n",
-        withscores ? (rangelen*2) : rangelen));
+    addReplyMultiBulkLen(c,withscores ? (rangelen*2) : rangelen);
     for (j = 0; j < rangelen; j++) {
         ele = ln->obj;
         addReplyBulk(c,ele);