Piotr Caban : atl: Pass correct arguments to fuctions executed by AtlInternalQueryInterface.
Module: wine Branch: master Commit: 981fcc897cd4dacf96b40ac892db61aae8ced702 URL: http://source.winehq.org/git/wine.git/?a=commit;h=981fcc897cd4dacf96b40ac892... Author: Piotr Caban <piotr(a)codeweavers.com> Date: Thu Jun 17 12:53:48 2010 +0200 atl: Pass correct arguments to fuctions executed by AtlInternalQueryInterface. --- dlls/atl/atl_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/atl/atl_main.c b/dlls/atl/atl_main.c index ea8be78..7780b41 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; }
participants (1)
-
Alexandre Julliard