mirror of
https://github.com/ksherlock/profuse.git
synced 2025-08-15 05:27:25 +00:00
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@232 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
@@ -213,10 +213,9 @@ ConcreteBlockCache::Entry *ConcreteBlockCache::findEntry(unsigned block)
|
|||||||
|
|
||||||
e = _hashTable[hash];
|
e = _hashTable[hash];
|
||||||
|
|
||||||
if (e)
|
while ((e) && (e->block != block))
|
||||||
{
|
e = e->nextHash;
|
||||||
while ((e) && (e->block != block)) e = e->nextHash;
|
|
||||||
}
|
|
||||||
|
|
||||||
return e;
|
return e;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user