Commit f13cb0d9 authored by antirez's avatar antirez
Browse files

DEBUG DIGEST additional lookup needed for VM removed from unstable branch that...

DEBUG DIGEST additional lookup needed for VM removed from unstable branch that does not have VM at all
parent 6901fe77
...@@ -100,7 +100,7 @@ void computeDatasetDigest(unsigned char *final) { ...@@ -100,7 +100,7 @@ void computeDatasetDigest(unsigned char *final) {
mixDigest(digest,key,sdslen(key)); mixDigest(digest,key,sdslen(key));
/* Make sure the key is loaded if VM is active */ /* Make sure the key is loaded if VM is active */
o = lookupKeyRead(db,keyobj); o = dictGetEntryVal(de);
aux = htonl(o->type); aux = htonl(o->type);
mixDigest(digest,&aux,sizeof(aux)); mixDigest(digest,&aux,sizeof(aux));
......
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