]> git.saurik.com Git - redis.git/blobdiff - redis.c
Now SORT returns an empty bulk reply if the key does not exist
[redis.git] / redis.c
diff --git a/redis.c b/redis.c
index 274dec7a85a3be63c984783ea27c73026fdf6716..91c28a0cebc1d7eb138d72d4563e8586eaf255e7 100644 (file)
--- a/redis.c
+++ b/redis.c
@@ -4839,7 +4839,7 @@ static void sortCommand(redisClient *c) {
     /* Lookup the key to sort. It must be of the right types */
     sortval = lookupKeyRead(c->db,c->argv[1]);
     if (sortval == NULL) {
-        addReply(c,shared.nokeyerr);
+        addReply(c,shared.nullmultibulk);
         return;
     }
     if (sortval->type != REDIS_SET && sortval->type != REDIS_LIST &&