Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1e8f4c05
Commit
1e8f4c05
authored
Feb 28, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Use flatten string in create_regexp debug traces.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8c8d8e80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
jsregexp.c
dlls/jscript/jsregexp.c
+2
-2
No files found.
dlls/jscript/jsregexp.c
View file @
1e8f4c05
...
@@ -647,12 +647,12 @@ HRESULT create_regexp(script_ctx_t *ctx, jsstr_t *src, DWORD flags, jsdisp_t **r
...
@@ -647,12 +647,12 @@ HRESULT create_regexp(script_ctx_t *ctx, jsstr_t *src, DWORD flags, jsdisp_t **r
const
WCHAR
*
str
;
const
WCHAR
*
str
;
HRESULT
hres
;
HRESULT
hres
;
TRACE
(
"%s %x
\n
"
,
debugstr_jsstr
(
src
),
flags
);
str
=
jsstr_flatten
(
src
);
str
=
jsstr_flatten
(
src
);
if
(
!
str
)
if
(
!
str
)
return
E_OUTOFMEMORY
;
return
E_OUTOFMEMORY
;
TRACE
(
"%s %x
\n
"
,
debugstr_wn
(
str
,
jsstr_length
(
src
)),
flags
);
hres
=
alloc_regexp
(
ctx
,
NULL
,
&
regexp
);
hres
=
alloc_regexp
(
ctx
,
NULL
,
&
regexp
);
if
(
FAILED
(
hres
))
if
(
FAILED
(
hres
))
return
hres
;
return
hres
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment