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
a804cc71
Commit
a804cc71
authored
Oct 14, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Use the official Windows constant for MAXLONGLONG.
parent
0f03f264
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
8 deletions
+5
-8
global.c
dlls/jscript/global.c
+2
-4
lex.c
dlls/jscript/lex.c
+2
-4
winnt.h
include/winnt.h
+1
-0
No files found.
dlls/jscript/global.c
View file @
a804cc71
...
...
@@ -29,8 +29,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
jscript
);
#define LONGLONG_MAX (((LONGLONG)0x7fffffff<<32)|0xffffffff)
static
const
WCHAR
NaNW
[]
=
{
'N'
,
'a'
,
'N'
,
0
};
static
const
WCHAR
InfinityW
[]
=
{
'I'
,
'n'
,
'f'
,
'i'
,
'n'
,
'i'
,
't'
,
'y'
,
0
};
static
const
WCHAR
ArrayW
[]
=
{
'A'
,
'r'
,
'r'
,
'a'
,
'y'
,
0
};
...
...
@@ -554,7 +552,7 @@ static HRESULT JSGlobal_parseFloat(script_ctx_t *ctx, vdisp_t *jsthis, WORD flag
while
(
isdigitW
(
*
str
))
{
hlp
=
d
*
10
+
*
(
str
++
)
-
'0'
;
if
(
d
>
LONGLONG_MAX
/
10
||
hlp
<
0
)
{
if
(
d
>
MAXLONGLONG
/
10
||
hlp
<
0
)
{
exp
++
;
break
;
}
...
...
@@ -573,7 +571,7 @@ static HRESULT JSGlobal_parseFloat(script_ctx_t *ctx, vdisp_t *jsthis, WORD flag
while
(
isdigitW
(
*
str
))
{
hlp
=
d
*
10
+
*
(
str
++
)
-
'0'
;
if
(
d
>
LONGLONG_MAX
/
10
||
hlp
<
0
)
if
(
d
>
MAXLONGLONG
/
10
||
hlp
<
0
)
break
;
d
=
hlp
;
...
...
dlls/jscript/lex.c
View file @
a804cc71
...
...
@@ -33,8 +33,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
jscript
);
#define LONGLONG_MAX (((LONGLONG)0x7fffffff<<32)|0xffffffff)
static
const
WCHAR
breakW
[]
=
{
'b'
,
'r'
,
'e'
,
'a'
,
'k'
,
0
};
static
const
WCHAR
caseW
[]
=
{
'c'
,
'a'
,
's'
,
'e'
,
0
};
static
const
WCHAR
catchW
[]
=
{
'c'
,
'a'
,
't'
,
'c'
,
'h'
,
0
};
...
...
@@ -397,7 +395,7 @@ static int parse_double_literal(parser_ctx_t *ctx, LONG int_part, literal_t **li
d
=
int_part
;
while
(
ctx
->
ptr
<
ctx
->
end
&&
isdigitW
(
*
ctx
->
ptr
))
{
hlp
=
d
*
10
+
*
(
ctx
->
ptr
++
)
-
'0'
;
if
(
d
>
LONGLONG_MAX
/
10
||
hlp
<
0
)
{
if
(
d
>
MAXLONGLONG
/
10
||
hlp
<
0
)
{
exp
++
;
break
;
}
...
...
@@ -414,7 +412,7 @@ static int parse_double_literal(parser_ctx_t *ctx, LONG int_part, literal_t **li
while
(
ctx
->
ptr
<
ctx
->
end
&&
isdigitW
(
*
ctx
->
ptr
))
{
hlp
=
d
*
10
+
*
(
ctx
->
ptr
++
)
-
'0'
;
if
(
d
>
LONGLONG_MAX
/
10
||
hlp
<
0
)
if
(
d
>
MAXLONGLONG
/
10
||
hlp
<
0
)
break
;
d
=
hlp
;
...
...
include/winnt.h
View file @
a804cc71
...
...
@@ -742,6 +742,7 @@ typedef struct _MEMORY_BASIC_INFORMATION
#define MAXBYTE 0xff
#define MAXWORD 0xffff
#define MAXDWORD 0xffffffff
#define MAXLONGLONG (((LONGLONG)0x7fffffff << 32) | 0xffffffff)
#define UNICODE_STRING_MAX_CHARS 32767
...
...
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