- /* Create a dictionary that we use to avoid adding duplicated keys
- * in case the user calls something like: "BLPOP foo foo foo 0".
- * The rest of the implementation is simpler if we know there are no
- * duplications in the key waiting list. */
- added = dictCreate(&setDictType,NULL);
-
- i = 0; /* The index for c->bpop.keys[...], we can't use the j loop
- variable as the list of keys may have duplicated elements. */