msxml: Text nodes with just whitespace should be stripped.

oldstable
Robert Shearman 2006-06-14 02:38:20 +01:00 committed by Alexandre Julliard
parent 1df06e5c4a
commit e072d7a0a3
1 changed files with 1 additions and 1 deletions

View File

@ -865,7 +865,7 @@ static xmlDocPtr doparse( char *ptr, int len )
* 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