msxml: Text nodes with just whitespace should be stripped.
This commit is contained in:
parent
1df06e5c4a
commit
e072d7a0a3
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue