mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
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-Trac-URL: https://ssl.icu-project.org/trac/ticket/52 git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@124 0a8b766c-62c9-45f9-954d-7f2943c9ead0
This commit is contained in:
parent
39dda40d7d
commit
c25bbe081f
2 changed files with 2 additions and 2 deletions
|
@ -751,7 +751,7 @@ int32_t ucnv_fromUChars (const UConverter * converter,
|
|||
{
|
||||
ucnv_fromUnicode (&myConverter,
|
||||
&myTarget,
|
||||
target + targetSize,
|
||||
myTarget_limit,
|
||||
&mySource,
|
||||
mySource_limit,
|
||||
NULL,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue