diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-08-12 22:48:22 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-08-12 22:48:22 +0000 |
commit | bfd228bed9467a392f1ca0f2fc3487784a8f1f44 (patch) | |
tree | 77556c5184e041db0dc05230eec42e0efc158168 /cpp/test/IceXML/encoding/Client.cpp | |
parent | Made initialize() more defensive: calling initialize with a null argv is (diff) | |
download | ice-bfd228bed9467a392f1ca0f2fc3487784a8f1f44.tar.bz2 ice-bfd228bed9467a392f1ca0f2fc3487784a8f1f44.tar.xz ice-bfd228bed9467a392f1ca0f2fc3487784a8f1f44.zip |
bug fix for readString - must convert XMLCh to UTF-8
Diffstat (limited to 'cpp/test/IceXML/encoding/Client.cpp')
-rw-r--r-- | cpp/test/IceXML/encoding/Client.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/test/IceXML/encoding/Client.cpp b/cpp/test/IceXML/encoding/Client.cpp index f25e3c6e4d4..7acfb5e6c6d 100644 --- a/cpp/test/IceXML/encoding/Client.cpp +++ b/cpp/test/IceXML/encoding/Client.cpp @@ -41,6 +41,7 @@ static const string strings[] = "hello >>world", "hello <<>>world", "hello &&''\"\"<<>>world", + "h\xc3\xa9llo world", // UTF-8 for character 233 "" }; |