From: Piotr Caban Date: Thu, 17 Jun 2010 10:53:48 +0000 (+0200) Subject: atl: Pass correct arguments to fuctions executed by AtlInternalQueryInterface. X-Git-Tag: wine-1.2-rc4~13 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=981fcc897cd4dacf96b40ac892db61aae8ced702;p=wine%2Feterwine.git atl: Pass correct arguments to fuctions executed by AtlInternalQueryInterface. --- diff --git a/dlls/atl/atl_main.c b/dlls/atl/atl_main.c index ea8be78a11..7780b411ee 100644 --- a/dlls/atl/atl_main.c +++ b/dlls/atl/atl_main.c @@ -272,7 +272,7 @@ HRESULT WINAPI AtlInternalQueryInterface(void* this, const _ATL_INTMAP_ENTRY* pE else { TRACE("Function\n"); - rc = pEntries[i].pFunc(this, iid, ppvObject,0); + rc = pEntries[i].pFunc(this, iid, ppvObject, pEntries[i].dw); } break; }