git-svn-id: https://profuse.googlecode.com/svn/branches/v2@232 aa027e90-d47c-11dd-86d7-074df07e0730

This commit is contained in:
ksherlock 2010-05-19 23:48:27 +00:00
parent a2bea3d8f7
commit ec9ac20528

View File

@ -213,10 +213,9 @@ ConcreteBlockCache::Entry *ConcreteBlockCache::findEntry(unsigned block)
e = _hashTable[hash];
if (e)
{
while ((e) && (e->block != block)) e = e->nextHash;
}
while ((e) && (e->block != block))
e = e->nextHash;
return e;
}