From: antirez Date: Tue, 10 May 2011 08:08:01 +0000 (+0200) Subject: DEBUG DIGEST additional lookup needed for VM removed from unstable branch that does... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/f13cb0d9de088898cd879b3912ea3e3300fc9fdf DEBUG DIGEST additional lookup needed for VM removed from unstable branch that does not have VM at all --- diff --git a/src/debug.c b/src/debug.c index 080e2b2e..170bffa5 100644 --- a/src/debug.c +++ b/src/debug.c @@ -100,7 +100,7 @@ void computeDatasetDigest(unsigned char *final) { mixDigest(digest,key,sdslen(key)); /* Make sure the key is loaded if VM is active */ - o = lookupKeyRead(db,keyobj); + o = dictGetEntryVal(de); aux = htonl(o->type); mixDigest(digest,&aux,sizeof(aux));