You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2003/09/30 14:41:43 UTC

DO NOT REPLY [Bug 23514] - FormatterToText::characters LF to CRLF replace (Win32)

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23514>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23514

FormatterToText::characters LF to CRLF replace (Win32)





------- Additional Comments From ts@edvwl.de  2003-09-30 12:41 -------
forgot to say something about the second bugfix :)

m_writer->write(m_newlineString, m_newlineStringLength);

must be fixed to:

m_writer->write(m_newlineString, 0, m_newlineStringLength);

cuz the 2nd param is the offset && the 3rd the length, not vice versa.