summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-01-17 20:32:07 +0000
committerMichael Stahl <mstahl@redhat.com>2016-01-21 13:43:30 +0100
commit6c0535b2b0e3f6d4bd5a9515a2c1a43e32e22a25 (patch)
tree11a5f4fed626a888416973bdbe9d406e353b5791 /sax
parent3819b97da3cddb463948c37300c47e804bd66464 (diff)
crashtesting: plain-text import allows liberal with the UTF-8 input
see ImplConvertUtf8ToUnicode which allows surrogates, so we need a non-liberal utf-input there if we want to enfore non-liberal utf-output here. Change-Id: I713818d7b6d79922d9b08f2b137a803384eccb65 (cherry picked from commit 734cadff24b3e8555b40c58b4abd1f1c366c25cb) Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sax')
-rw-r--r--sax/source/tools/fastserializer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/source/tools/fastserializer.cxx b/sax/source/tools/fastserializer.cxx
index 8437ff0284e4..b81886ef321f 100644
--- a/sax/source/tools/fastserializer.cxx
+++ b/sax/source/tools/fastserializer.cxx
@@ -94,7 +94,7 @@ namespace sax_fastparser {
void FastSaxSerializer::write( const OUString& sOutput, bool bEscape )
{
- write( sOutput.toUtf8(), bEscape );
+ write( OUStringToOString(sOutput, RTL_TEXTENCODING_UTF8), bEscape );
}