Commit bf4a43e1 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

msxml3: Correct get_attributes for CDATA Section.

parent e989d48f
...@@ -417,6 +417,7 @@ static HRESULT WINAPI xmlnode_get_attributes( ...@@ -417,6 +417,7 @@ static HRESULT WINAPI xmlnode_get_attributes(
/* Attribute, CDataSection, Comment, Documents, Documents Fragments, /* Attribute, CDataSection, Comment, Documents, Documents Fragments,
Entity and Text Nodes does not support get_attributes */ Entity and Text Nodes does not support get_attributes */
case XML_ATTRIBUTE_NODE: case XML_ATTRIBUTE_NODE:
case XML_CDATA_SECTION_NODE:
case XML_COMMENT_NODE: case XML_COMMENT_NODE:
case XML_DOCUMENT_NODE: case XML_DOCUMENT_NODE:
case XML_DOCUMENT_FRAG_NODE: case XML_DOCUMENT_FRAG_NODE:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment