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
cd6ba351
Commit
cd6ba351
authored
May 12, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
May 12, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Avoid using long.
parent
5ee89aad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
regexp.c
dlls/jscript/regexp.c
+4
-4
No files found.
dlls/jscript/regexp.c
View file @
cd6ba351
...
...
@@ -1977,7 +1977,7 @@ PushBackTrackState(REGlobalData *gData, REOp op,
ptrdiff_t
btincr
=
((
char
*
)
result
+
sz
)
-
((
char
*
)
gData
->
backTrackStack
+
btsize
);
TRACE
(
"
\t
BT_Push: %lu,%lu
\n
"
,
(
unsigned
long
)
parenIndex
,
(
unsigned
long
)
parenCount
);
TRACE
(
"
\t
BT_Push: %lu,%lu
\n
"
,
(
ULONG_PTR
)
parenIndex
,
(
ULONG_PTR
)
parenCount
);
JS_COUNT_OPERATION
(
gData
->
cx
,
JSOW_JUMP
*
(
1
+
parenCount
));
if
(
btincr
>
0
)
{
...
...
@@ -2729,7 +2729,7 @@ ExecuteREBytecode(REGlobalData *gData, REMatchState *x)
case
REOP_LPAREN
:
pc
=
ReadCompactIndex
(
pc
,
&
parenIndex
);
TRACE
(
"[ %lu ]
\n
"
,
(
unsigned
long
)
parenIndex
);
TRACE
(
"[ %lu ]
\n
"
,
(
ULONG_PTR
)
parenIndex
);
assert
(
parenIndex
<
gData
->
regexp
->
parenCount
);
if
(
parenIndex
+
1
>
parenSoFar
)
parenSoFar
=
parenIndex
+
1
;
...
...
@@ -3093,8 +3093,8 @@ ExecuteREBytecode(REGlobalData *gData, REMatchState *x)
}
TRACE
(
"
\t
BT_Pop: %ld,%ld
\n
"
,
(
unsigned
long
)
backTrackData
->
parenIndex
,
(
unsigned
long
)
backTrackData
->
parenCount
);
(
ULONG_PTR
)
backTrackData
->
parenIndex
,
(
ULONG_PTR
)
backTrackData
->
parenCount
);
continue
;
}
x
=
result
;
...
...
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