diff --git a/src/dict.c b/src/dict.c index f4a44cf2e78178c3cd8388d2767908cfe3a4edcf..946e23c4a398bd033181b074d5788d5070b6ab2f 100644 --- a/src/dict.c +++ b/src/dict.c @@ -729,14 +729,6 @@ unsigned long dictScan(dict *d, v++; v = rev(v); - /* Only preprare cursor for the next iteration when it is non-zero, - * so that 0 can be used as end-of-scan sentinel. */ - if (v) { - /* Set unmasked bits so the cursor will keep its position - * regardless of the mask in the next iterations */ - v |= ~m0; - } - return v; }