X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/bab205f787afcb37e5b5a5d1eb16c8fafef6f95d..eab0e26e03fa3c27a4e1172659cea32e1b83699e:/src/multi.c diff --git a/src/multi.c b/src/multi.c index f0b8fc85..44036256 100644 --- a/src/multi.c +++ b/src/multi.c @@ -194,7 +194,7 @@ void unwatchAllKeys(redisClient *c) { * from the list */ wk = listNodeValue(ln); clients = dictFetchValue(wk->db->watched_keys, wk->key); - redisAssert(clients != NULL); + redisAssertWithInfo(c,NULL,clients != NULL); listDelNode(clients,listSearchKey(clients,c)); /* Kill the entry at all if this was the only client */ if (listLength(clients) == 0)