- Partly revert r53519. Fix build

svn path=/trunk/; revision=53521
This commit is contained in:
Dmitry Chapyshev 2011-09-01 16:27:20 +00:00
parent afa0818365
commit 6b2123e650

View file

@ -317,7 +317,7 @@ static int ctl2_find_guid(
while (offset != -1) {
guidentry = (MSFT_GuidEntry *)&This->typelib_segment_data[MSFT_SEG_GUID][offset];
if (IsEqualGUID(*guidentry, guid)) return offset;
if (IsEqualGUID(guidentry, guid)) return offset;
offset = guidentry->next_hash;
}