]> git.saurik.com Git - redis.git/commitdiff
use list wrapper functions in computing the dataset digest
authorPieter Noordhuis <pcnoordhuis@gmail.com>
Mon, 31 May 2010 21:35:51 +0000 (23:35 +0200)
committerPieter Noordhuis <pcnoordhuis@gmail.com>
Mon, 31 May 2010 21:35:51 +0000 (23:35 +0200)
redis.c

diff --git a/redis.c b/redis.c
index 07a537481dc9469f56046339c7037198d12df527..61941d4021fb309b8504cd963d18875a63b809b0 100644 (file)
--- a/redis.c
+++ b/redis.c
@@ -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);