1
0
mirror of https://github.com/fluencelabs/redis synced 2025-03-26 04:11:04 +00:00

Merge branch 'unstable' of github.com:antirez/redis into unstable

This commit is contained in:
antirez 2013-02-15 16:45:04 +01:00
commit 522c3255db

@ -384,15 +384,12 @@ robj *hashTypeCurrentObject(hashTypeIterator *hi, int what) {
} else {
dst = createStringObjectFromLongLong(vll);
}
} else if (hi->encoding == REDIS_ENCODING_HT) {
hashTypeCurrentFromHashTable(hi, what, &dst);
incrRefCount(dst);
} else {
redisPanic("Unknown hash encoding");
}
return dst;
}