Robert Shearman : msxml: Text nodes with just whitespace should be stripped .

Alexandre Julliard julliard at wine.codeweavers.com
Wed Jun 14 06:52:04 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: e072d7a0a3c25a4308a835bb204f5a08db3413c7
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=e072d7a0a3c25a4308a835bb204f5a08db3413c7

Author: Robert Shearman <rob at codeweavers.com>
Date:   Wed Jun 14 02:38:20 2006 +0100

msxml: Text nodes with just whitespace should be stripped.

---

 dlls/msxml3/domdoc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c
index 895a093..39e4768 100644
--- a/dlls/msxml3/domdoc.c
+++ b/dlls/msxml3/domdoc.c
@@ -865,7 +865,7 @@ #ifdef HAVE_XMLREADMEMORY
      * writing errors to stderr
      */
     return xmlReadMemory( ptr, len, NULL, NULL,
-                          XML_PARSE_NOERROR | XML_PARSE_NOWARNING );
+                          XML_PARSE_NOERROR | XML_PARSE_NOWARNING | XML_PARSE_NOBLANKS );
 #else
     return xmlParseMemory( ptr, len );
 #endif




More information about the wine-cvs mailing list