Commit e072d7a0 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

msxml: Text nodes with just whitespace should be stripped.

parent 1df06e5c
......@@ -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
......
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