提交 dc845730 编写于 作者: P Pieter Noordhuis

use list wrapper functions in computing the dataset digest

上级 d71b9865
......@@ -10923,16 +10923,14 @@ static void computeDatasetDigest(unsigned char *final) {
if (o->type == REDIS_STRING) {
mixObjectDigest(digest,o);
} else if (o->type == REDIS_LIST) {
list *list = o->ptr;
listNode *ln;
listIter li;
listRewind(list,&li);
while((ln = listNext(&li))) {
robj *eleobj = listNodeValue(ln);
lIterator *li = lInitIterator(o,0,REDIS_TAIL);
lEntry entry;
while(lNext(li,&entry)) {
robj *eleobj = lGet(&entry);
mixObjectDigest(digest,eleobj);
decrRefCount(eleobj);
}
lReleaseIterator(li);
} else if (o->type == REDIS_SET) {
dict *set = o->ptr;
dictIterator *di = dictGetIterator(set);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册