From 1c6f16a384d356e3c3fb0e03bd17b38e4b6e3b62 Mon Sep 17 00:00:00 2001 From: Robert Shearman Date: Mon, 8 May 2006 15:55:52 +0100 Subject: [PATCH] ole32: The type check in AntiMonikerImpl_CommonPrefixWith should be for anti-monikers, not item-monikers. --- dlls/ole32/antimoniker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ole32/antimoniker.c b/dlls/ole32/antimoniker.c index 77d883afee1..472683fb122 100644 --- a/dlls/ole32/antimoniker.c +++ b/dlls/ole32/antimoniker.c @@ -409,7 +409,7 @@ AntiMonikerImpl_CommonPrefixWith(IMoniker* iface,IMoniker* pmkOther,IMoniker** p IMoniker_IsSystemMoniker(pmkOther,&mkSys); - if(mkSys==MKSYS_ITEMMONIKER){ + if(mkSys==MKSYS_ANTIMONIKER){ IMoniker_AddRef(iface); -- 2.11.4.GIT