Nikolay Sivov : msxml3: Create PI node properly.

Alexandre Julliard julliard at winehq.org
Tue Feb 9 10:37:55 CST 2010


Module: wine
Branch: master
Commit: 07162a624edce151758eee7205e6a852f4c4e575
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=07162a624edce151758eee7205e6a852f4c4e575

Author: Nikolay Sivov <bunglehead at gmail.com>
Date:   Tue Feb  9 03:03:30 2010 +0300

msxml3: Create PI node properly.

---

 dlls/msxml3/node.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c
index 6729512..2487fa8 100644
--- a/dlls/msxml3/node.c
+++ b/dlls/msxml3/node.c
@@ -1738,6 +1738,9 @@ IXMLDOMNode *create_node( xmlNodePtr node )
     case XML_CDATA_SECTION_NODE:
         pUnk = create_cdata( node );
         break;
+    case XML_PI_NODE:
+        pUnk = create_pi( node );
+        break;
     case XML_COMMENT_NODE:
         pUnk = create_comment( node );
         break;




More information about the wine-cvs mailing list