From: antirez Date: Sun, 15 May 2011 10:15:54 +0000 (+0200) Subject: Fixed SINTER[STORE] problem related to the new copy on write safe iterator X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/dd1eefa4f3c89177cbe4f2e98dbd8f409ff87bc6 Fixed SINTER[STORE] problem related to the new copy on write safe iterator --- diff --git a/src/t_set.c b/src/t_set.c index b221e2e9..be083c8b 100644 --- a/src/t_set.c +++ b/src/t_set.c @@ -437,6 +437,7 @@ void sinterGenericCommand(redisClient *c, robj **setkeys, unsigned long setnum, si = setTypeInitIterator(sets[0]); while((encoding = setTypeNext(si,&eleobj,&intobj)) != -1) { for (j = 1; j < setnum; j++) { + if (sets[j] == sets[0]) continue; if (encoding == REDIS_ENCODING_INTSET) { /* intset with intset is simple... and fast */ if (sets[j]->encoding == REDIS_ENCODING_INTSET &&