Nikolay Sivov : scrrun: Invoke() takes interface pointer, not a pointer to pointer.

Alexandre Julliard julliard at winehq.org
Mon Nov 5 13:32:24 CST 2012


Module: wine
Branch: master
Commit: f43b49fbedc697e33ca81a09d7dd18b4d6348ead
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f43b49fbedc697e33ca81a09d7dd18b4d6348ead

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Sun Nov  4 10:36:16 2012 -0500

scrrun: Invoke() takes interface pointer, not a pointer to pointer.

---

 dlls/scrrun/filesystem.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/scrrun/filesystem.c b/dlls/scrrun/filesystem.c
index ade3310..d79c061 100644
--- a/dlls/scrrun/filesystem.c
+++ b/dlls/scrrun/filesystem.c
@@ -127,7 +127,7 @@ static HRESULT WINAPI filesys_Invoke(IFileSystem3 *iface, DISPID dispIdMember,
     hr = get_typeinfo(IFileSystem3_tid, &typeinfo);
     if(SUCCEEDED(hr))
     {
-        hr = ITypeInfo_Invoke(typeinfo, &iface, dispIdMember, wFlags,
+        hr = ITypeInfo_Invoke(typeinfo, iface, dispIdMember, wFlags,
                 pDispParams, pVarResult, pExcepInfo, puArgErr);
         ITypeInfo_Release(typeinfo);
     }




More information about the wine-cvs mailing list