[ICU-52]It would help if the correct target_limit was used rather than simply calculated. [This is part of the fix for MAX_STRLEN pointer wraparounds]

X-Commit-URL: https://ssl.icu-project.org/trac/changeset/124
This commit is contained in:
Steven R. Loomis 1999-10-26 21:15:33 +00:00
parent 09d90df5fb
commit a5143f21b8
2 changed files with 2 additions and 2 deletions

View file

@ -751,7 +751,7 @@ int32_t ucnv_fromUChars (const UConverter * converter,
{
ucnv_fromUnicode (&myConverter,
&myTarget,
target + targetSize,
myTarget_limit,
&mySource,
mySource_limit,
NULL,

View file

@ -790,7 +790,7 @@ UnicodeString::extract(UTextOffset start,
// perform the conversion
// there is no loop here since we assume the buffer is large enough
ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
ucnv_fromUnicode(converter, &myTarget, myTargetLimit,
&mySource, mySourceEnd, NULL, TRUE, &status);
// close the converter