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
60e8b78e
Commit
60e8b78e
authored
Oct 20, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 26, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml: Always increase error count when detected.
The error count wasn't be increased if tracing was disabled. eg CI. Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=55720
parent
9ad97f69
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
xslpattern.y
dlls/msxml3/xslpattern.y
+2
-1
No files found.
dlls/msxml3/xslpattern.y
View file @
60e8b78e
...
...
@@ -40,6 +40,7 @@ static inline BOOL is_literal(xmlChar const* tok)
static void xslpattern_error(parser_param* param, void const* scanner, char const* msg)
{
param->err++;
FIXME("%s:\n"
" param {\n"
" yyscanner=%p\n"
...
...
@@ -52,7 +53,7 @@ static void xslpattern_error(parser_param* param, void const* scanner, char cons
" }\n"
" scanner=%p\n",
msg, param->yyscanner, param->ctx, param->in, param->pos,
param->len, param->out,
++
param->err, scanner);
param->len, param->out, param->err, scanner);
}
%}
...
...
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