From ae23a6c953c6786b95a24ac1601512985dbfd53c Mon Sep 17 00:00:00 2001 From: "Unknown (roddey)" <dev-null@apache.org> Date: Wed, 12 Apr 2000 18:41:28 +0000 Subject: [PATCH] Fixed a small 'one off' problem in the calls to ICU. git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@172045 13f79535-47bb-0310-9956-ffa450edef68 --- src/util/Transcoders/ICU/ICUTransService.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/util/Transcoders/ICU/ICUTransService.cpp b/src/util/Transcoders/ICU/ICUTransService.cpp index d4905bccd..1f57aa94a 100644 --- a/src/util/Transcoders/ICU/ICUTransService.cpp +++ b/src/util/Transcoders/ICU/ICUTransService.cpp @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.18 2000/04/12 18:41:28 roddey + * Fixed a small 'one off' problem in the calls to ICU. + * * Revision 1.17 2000/04/07 01:02:00 roddey * Fixed an error message so that it indicated the correct radix for the rep * token. Get all of the basic output formatting functionality in place for @@ -1029,7 +1032,7 @@ bool ICULCPTranscoder::transcode(const char* const toTranscode ( fConverter , targetBuf - , maxChars + 1 + , maxChars , toTranscode , srcLen , &err @@ -1109,7 +1112,7 @@ bool ICULCPTranscoder::transcode( const XMLCh* const toTranscode ( fConverter , toFill - , maxChars + 1 + , maxChars , actualSrc , &err ); -- GitLab