Robert Shearman : msxml: Text nodes with just whitespace should be stripped .
Module: wine Branch: refs/heads/master Commit: e072d7a0a3c25a4308a835bb204f5a08db3413c7 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e072d7a0a3c25a4308a835bb... Author: Robert Shearman <rob(a)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
participants (1)
-
Alexandre Julliard