Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
393c232b
Commit
393c232b
authored
Oct 05, 2011
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Support setting unlimited xml stream length for a reader.
parent
165d1b5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
saxreader.c
dlls/msxml3/saxreader.c
+8
-4
No files found.
dlls/msxml3/saxreader.c
View file @
393c232b
...
...
@@ -2383,7 +2383,14 @@ static HRESULT internal_putProperty(
return
S_OK
;
}
FIXME
(
"(%p)->(%s): unsupported property
\n
"
,
This
,
debugstr_w
(
prop
));
if
(
!
memcmp
(
prop
,
PropertyMaxXMLSizeW
,
sizeof
(
PropertyMaxXMLSizeW
)))
{
if
(
V_VT
(
&
value
)
==
VT_I4
&&
V_I4
(
&
value
)
==
0
)
return
S_OK
;
FIXME
(
"(%p)->(%s): max-xml-size unsupported
\n
"
,
This
,
debugstr_variant
(
&
value
));
return
E_NOTIMPL
;
}
FIXME
(
"(%p)->(%s:%s): unsupported property
\n
"
,
This
,
debugstr_w
(
prop
),
debugstr_variant
(
&
value
));
if
(
!
memcmp
(
prop
,
PropertyCharsetW
,
sizeof
(
PropertyCharsetW
)))
return
E_NOTIMPL
;
...
...
@@ -2397,9 +2404,6 @@ static HRESULT internal_putProperty(
if
(
!
memcmp
(
prop
,
PropertyMaxElementDepthW
,
sizeof
(
PropertyMaxElementDepthW
)))
return
E_NOTIMPL
;
if
(
!
memcmp
(
prop
,
PropertyMaxXMLSizeW
,
sizeof
(
PropertyMaxXMLSizeW
)))
return
E_NOTIMPL
;
if
(
!
memcmp
(
prop
,
PropertySchemaDeclHandlerW
,
sizeof
(
PropertySchemaDeclHandlerW
)))
return
E_NOTIMPL
;
...
...
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