removed not used vars in dictScan().

This commit is contained in:
antirez 2013-11-05 11:56:11 +01:00
parent 6cf230ea91
commit 20fb91fd31

View File

@ -751,7 +751,6 @@ unsigned long dictScan(dict *d,
{
dictht *t0, *t1;
const dictEntry *de;
unsigned long s0, s1;
unsigned long m0, m1;
if (dictSize(d) == 0) return 0;
@ -777,8 +776,6 @@ unsigned long dictScan(dict *d,
t1 = &d->ht[0];
}
s0 = t0->size;
s1 = t1->size;
m0 = t0->sizemask;
m1 = t1->sizemask;