From 6b2123e65093f1b4615f2be408b03733f9cfb3db Mon Sep 17 00:00:00 2001 From: Dmitry Chapyshev Date: Thu, 1 Sep 2011 16:27:20 +0000 Subject: [PATCH] - Partly revert r53519. Fix build svn path=/trunk/; revision=53521 --- reactos/dll/win32/oleaut32/typelib2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/oleaut32/typelib2.c b/reactos/dll/win32/oleaut32/typelib2.c index 5057fc61fda..1333b68eaad 100644 --- a/reactos/dll/win32/oleaut32/typelib2.c +++ b/reactos/dll/win32/oleaut32/typelib2.c @@ -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; }