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
61032086
Commit
61032086
authored
Aug 20, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Apostrophe is never escaped by writer.
parent
f725c989
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
saxreader.c
dlls/msxml3/tests/saxreader.c
+9
-9
No files found.
dlls/msxml3/tests/saxreader.c
View file @
61032086
...
...
@@ -1553,8 +1553,8 @@ static HRESULT WINAPI isaxattributes_getValue(ISAXAttributes* iface, int index,
{
static
const
WCHAR
attrvaluesW
[][
10
]
=
{{
'a'
,
'1'
,
'j'
,
'u'
,
'n'
,
'k'
,
0
},
{
'a'
,
'2'
,
'j'
,
'u'
,
'n'
,
'k'
,
0
},
{
'<'
,
'&'
,
'"'
,
'>'
,
0
}};
static
const
int
attrvalueslen
[]
=
{
2
,
2
,
4
};
{
'<'
,
'&'
,
'"'
,
'>'
,
'\''
,
0
}};
static
const
int
attrvalueslen
[]
=
{
2
,
2
,
5
};
ok
(
index
>=
0
&&
index
<=
2
,
"invalid index received %d
\n
"
,
index
);
...
...
@@ -3331,9 +3331,9 @@ struct writer_startendelement_t {
ISAXAttributes
*
attr
;
};
static
const
char
startelement_xml
[]
=
"<uri:local a:attr1=
\"
a1
\"
attr2=
\"
a2
\"
attr3=
\"
<&">
\"
>"
;
static
const
char
startendelement_xml
[]
=
"<uri:local a:attr1=
\"
a1
\"
attr2=
\"
a2
\"
attr3=
\"
<&">
\"
/>"
;
static
const
char
startendelement_noescape_xml
[]
=
"<uri:local a:attr1=
\"
a1
\"
attr2=
\"
a2
\"
attr3=
\"
<&
\"
>
\"
/>"
;
static
const
char
startelement_xml
[]
=
"<uri:local a:attr1=
\"
a1
\"
attr2=
\"
a2
\"
attr3=
\"
<&">
\
'\
"
>"
;
static
const
char
startendelement_xml
[]
=
"<uri:local a:attr1=
\"
a1
\"
attr2=
\"
a2
\"
attr3=
\"
<&">
\
'\
"
/>"
;
static
const
char
startendelement_noescape_xml
[]
=
"<uri:local a:attr1=
\"
a1
\"
attr2=
\"
a2
\"
attr3=
\"
<&
\"
>
\
'\
"
/>"
;
static
const
struct
writer_startendelement_t
writer_startendelement
[]
=
{
/* 0 */
...
...
@@ -3751,10 +3751,10 @@ struct writer_characters_t {
};
static
const
struct
writer_characters_t
writer_characters
[]
=
{
{
&
CLSID_MXXMLWriter
,
"< > &
\"
"
,
"< > &
\"
"
},
{
&
CLSID_MXXMLWriter30
,
"< > &
\"
"
,
"< > &
\"
"
},
{
&
CLSID_MXXMLWriter40
,
"< > &
\"
"
,
"< > &
\"
"
},
{
&
CLSID_MXXMLWriter60
,
"< > &
\"
"
,
"< > &
\"
"
},
{
&
CLSID_MXXMLWriter
,
"< > &
\"
\'
"
,
"< > &
\"
\'
"
},
{
&
CLSID_MXXMLWriter30
,
"< > &
\"
\'
"
,
"< > &
\"
\'
"
},
{
&
CLSID_MXXMLWriter40
,
"< > &
\"
\'
"
,
"< > &
\"
\'
"
},
{
&
CLSID_MXXMLWriter60
,
"< > &
\"
\'
"
,
"< > &
\"
\'
"
},
{
NULL
}
};
...
...
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