Module: wine Branch: master Commit: bf4a43e1e03e341aa454dfa53e9bf0eef118de0f URL: http://source.winehq.org/git/wine.git/?a=commit;h=bf4a43e1e03e341aa454dfa53e...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Mon Jan 14 13:15:58 2008 +1100
msxml3: Correct get_attributes for CDATA Section.
---
dlls/msxml3/node.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index c0d9076..72be7a8 100644 --- a/dlls/msxml3/node.c +++ b/dlls/msxml3/node.c @@ -417,6 +417,7 @@ static HRESULT WINAPI xmlnode_get_attributes( /* Attribute, CDataSection, Comment, Documents, Documents Fragments, Entity and Text Nodes does not support get_attributes */ case XML_ATTRIBUTE_NODE: + case XML_CDATA_SECTION_NODE: case XML_COMMENT_NODE: case XML_DOCUMENT_NODE: case XML_DOCUMENT_FRAG_NODE: