Alexandre Julliard : jscript: Add a missing terminator to a string constant .

Alexandre Julliard julliard at winehq.org
Mon Oct 11 13:15:09 CDT 2010


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Sat Oct  9 16:10:56 2010 +0200

jscript: Add a missing terminator to a string constant.

---

 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 368cb6e..0e823d3 100644
--- a/dlls/jscript/dispex.c
+++ b/dlls/jscript/dispex.c
@@ -804,7 +804,7 @@ HRESULT init_dispex_from_constr(jsdisp_t *dispex, script_ctx_t *ctx, const built
     dispex_prop_t *prop;
     HRESULT hres;
 
-    static const WCHAR constructorW[] = {'c','o','n','s','t','r','u','c','t','o','r'};
+    static const WCHAR constructorW[] = {'c','o','n','s','t','r','u','c','t','o','r',0};
     static const WCHAR prototypeW[] = {'p','r','o','t','o','t','y','p','e',0};
 
     hres = find_prop_name_prot(constr, prototypeW, &prop);




More information about the wine-cvs mailing list