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
3948541a
Commit
3948541a
authored
Oct 31, 2008
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 31, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Fixed if nesting / ptr checking problems in xmlnode_transformNode.
parent
8524cc17
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
9 deletions
+4
-9
node.c
dlls/msxml3/node.c
+4
-9
No files found.
dlls/msxml3/node.c
View file @
3948541a
...
...
@@ -1310,12 +1310,8 @@ static HRESULT WINAPI xmlnode_transformNode(
if
(
pOutput
)
{
htmlDocContentDumpOutput
(
pOutput
,
result
->
doc
,
NULL
);
if
(
pOutput
)
{
pContent
=
xmlBufferContent
(
pOutput
->
buffer
);
*
xmlString
=
bstr_from_xmlChar
(
pContent
);
}
pContent
=
xmlBufferContent
(
pOutput
->
buffer
);
*
xmlString
=
bstr_from_xmlChar
(
pContent
);
xmlOutputBufferClose
(
pOutput
);
}
}
...
...
@@ -1332,13 +1328,12 @@ static HRESULT WINAPI xmlnode_transformNode(
{
pContent
=
xmlBufferContent
(
pXmlBuf
);
*
xmlString
=
bstr_from_xmlChar
(
pContent
);
xmlBufferFree
(
pXmlBuf
);
}
xmlBufferFree
(
pXmlBuf
);
}
}
xmlFreeDoc
(
result
);
}
xmlFreeDoc
(
result
);
/* libxslt "helpfully" frees the XML document the stylesheet was
generated from, too */
xsltSS
->
doc
=
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