Commit ab30060a authored by git-hulk's avatar git-hulk Committed by Michael Grunder
Browse files

Fix review comments

parent 5b253d89
...@@ -217,7 +217,6 @@ static void *createIntegerObject(const redisReadTask *task, long long value) { ...@@ -217,7 +217,6 @@ static void *createIntegerObject(const redisReadTask *task, long long value) {
parent->type == REDIS_REPLY_MAP || parent->type == REDIS_REPLY_MAP ||
parent->type == REDIS_REPLY_ATTR || parent->type == REDIS_REPLY_ATTR ||
parent->type == REDIS_REPLY_SET || parent->type == REDIS_REPLY_SET ||
parent->type == REDIS_REPLY_SET ||
parent->type == REDIS_REPLY_PUSH); parent->type == REDIS_REPLY_PUSH);
parent->element[task->idx] = r; parent->element[task->idx] = r;
} }
......
...@@ -646,7 +646,7 @@ static int processItem(redisReader *r) { ...@@ -646,7 +646,7 @@ static int processItem(redisReader *r) {
return processBulkItem(r); return processBulkItem(r);
case REDIS_REPLY_ARRAY: case REDIS_REPLY_ARRAY:
case REDIS_REPLY_MAP: case REDIS_REPLY_MAP:
case REDIS_REPLY_ATTR: case REDIS_REPLY_ATTR:
case REDIS_REPLY_SET: case REDIS_REPLY_SET:
case REDIS_REPLY_PUSH: case REDIS_REPLY_PUSH:
return processAggregateItem(r); return processAggregateItem(r);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment