Commit b4987d09 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

jscript: Use specified expression length to trace it.

parent edd4356d
...@@ -3846,7 +3846,7 @@ HRESULT create_regexp(script_ctx_t *ctx, const WCHAR *exp, int len, DWORD flags, ...@@ -3846,7 +3846,7 @@ HRESULT create_regexp(script_ctx_t *ctx, const WCHAR *exp, int len, DWORD flags,
RegExpInstance *regexp; RegExpInstance *regexp;
HRESULT hres; HRESULT hres;
TRACE("%s %x\n", debugstr_w(exp), flags); TRACE("%s %x\n", debugstr_wn(exp, len), flags);
hres = alloc_regexp(ctx, NULL, &regexp); hres = alloc_regexp(ctx, NULL, &regexp);
if(FAILED(hres)) if(FAILED(hres))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment