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
3a578022
Commit
3a578022
authored
Nov 24, 2022
by
Robert Wilhelm
Committed by
Alexandre Julliard
Nov 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Handle another variant of LTE/GTE tokens.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53670
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
parent
63b6ec5a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
lex.c
dlls/vbscript/lex.c
+10
-1
No files found.
dlls/vbscript/lex.c
View file @
3a578022
...
...
@@ -422,7 +422,6 @@ static int parse_next_token(void *lval, unsigned *loc, parser_ctx_t *ctx)
case
':'
:
case
')'
:
case
','
:
case
'='
:
case
'+'
:
case
'*'
:
case
'/'
:
...
...
@@ -477,6 +476,16 @@ static int parse_next_token(void *lval, unsigned *loc, parser_ctx_t *ctx)
if
(
*++
ctx
->
ptr
==
'h'
||
*
ctx
->
ptr
==
'H'
)
return
parse_hex_literal
(
ctx
,
lval
);
return
'&'
;
case
'='
:
switch
(
*++
ctx
->
ptr
)
{
case
'<'
:
ctx
->
ptr
++
;
return
tLTEQ
;
case
'>'
:
ctx
->
ptr
++
;
return
tGTEQ
;
}
return
'='
;
case
'<'
:
switch
(
*++
ctx
->
ptr
)
{
case
'>'
:
...
...
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