From: antirez Date: Fri, 9 Apr 2010 16:35:24 +0000 (+0200) Subject: removed a no longer true assert in the VM code X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/10d91d7fb373e9e70ce22d4f796d59d5510d6ee5 removed a no longer true assert in the VM code --- diff --git a/redis.c b/redis.c index d80e56b0..1afe8967 100644 --- a/redis.c +++ b/redis.c @@ -2828,9 +2828,6 @@ static void decrRefCount(void *obj) { if (server.vm_enabled && (o->storage == REDIS_VM_SWAPPED || o->storage == REDIS_VM_LOADING)) { - if (o->storage == REDIS_VM_SWAPPED || o->storage == REDIS_VM_LOADING) { - redisAssert(o->refcount == 1); - } if (o->storage == REDIS_VM_LOADING) vmCancelThreadedIOJob(obj); redisAssert(o->type == REDIS_STRING); freeStringObject(o);