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
db79c6bd
Commit
db79c6bd
authored
Aug 21, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Fix a warning accessing internal buffer of xmlOutputBuffer.
parent
9554dfb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
node.c
dlls/msxml3/node.c
+10
-1
No files found.
dlls/msxml3/node.c
View file @
db79c6bd
...
...
@@ -987,6 +987,15 @@ static void htmldoc_dumpcontent(xmlOutputBufferPtr buf, xmlDocPtr doc)
doc
->
type
=
type
;
}
static
const
xmlChar
*
get_output_buffer_content
(
xmlOutputBufferPtr
output
)
{
#ifdef LIBXML2_NEW_BUFFER
return
xmlOutputBufferGetContent
(
output
);
#else
return
xmlBufferContent
(
output
->
buffer
);
#endif
}
HRESULT
node_transform_node
(
const
xmlnode
*
This
,
IXMLDOMNode
*
stylesheet
,
BSTR
*
p
)
{
#ifdef SONAME_LIBXSLT
...
...
@@ -1015,7 +1024,7 @@ HRESULT node_transform_node(const xmlnode *This, IXMLDOMNode *stylesheet, BSTR *
if
(
output
)
{
htmldoc_dumpcontent
(
output
,
result
->
doc
);
content
=
xmlBufferContent
(
output
->
buffer
);
content
=
get_output_buffer_content
(
output
);
*
p
=
bstr_from_xmlChar
(
content
);
xmlOutputBufferClose
(
output
);
}
...
...
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