Jacek Caban : jscript: Don't try to create property in jsdisp_call_name.

Alexandre Julliard julliard at winehq.org
Mon Feb 8 11:06:05 CST 2010


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Fri Feb  5 23:14:35 2010 +0100

jscript: Don't try to create property in jsdisp_call_name.

---

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

diff --git a/dlls/jscript/dispex.c b/dlls/jscript/dispex.c
index 492623e..19fdd56 100644
--- a/dlls/jscript/dispex.c
+++ b/dlls/jscript/dispex.c
@@ -878,7 +878,7 @@ HRESULT jsdisp_call_name(DispatchEx *disp, const WCHAR *name, WORD flags, DISPPA
     dispex_prop_t *prop;
     HRESULT hres;
 
-    hres = find_prop_name_prot(disp, name, TRUE, &prop);
+    hres = find_prop_name_prot(disp, name, FALSE, &prop);
     if(FAILED(hres))
         return hres;
 




More information about the wine-cvs mailing list