http://bugs.winehq.org/show_bug.cgi?id=21668
Keldon Jones keldon@keldon.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |keldon@keldon.net
--- Comment #15 from Keldon Jones keldon@keldon.net 2010-10-09 12:50:26 CDT --- Bug still exists in 1.3.4.
The change in commit 49fa9de580814028e3224e9d9eb6472bf11092be would only have an effect in the entire string passed was whitespace. But it is called with a string of "HOUSE35\t..." and a len of 8. Currently, the entire "HOUSE35\t" is passed unchanged to xmlSAX2characters().
Something like the patch in http://www.winehq.org/pipermail/wine-patches/2010-August/092802.html (which seems to not have been applied) would work in this case, except that it only trims nodes of type XML_TEXT_NODE, but the node here is of type XML_ELEMENT_NODE instead.