mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
remove an unneeded check and fix an off by one error
X-Trac-URL: https://ssl.icu-project.org/trac/ticket/52 git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@120 0a8b766c-62c9-45f9-954d-7f2943c9ead0
This commit is contained in:
parent
a2474a0e82
commit
371542c71e
1 changed files with 4 additions and 8 deletions
|
@ -744,8 +744,8 @@ int32_t ucnv_fromUChars (const UConverter * converter,
|
|||
mySource_limit = mySource + mySourceLength;
|
||||
myTarget_limit = target + targetSize;
|
||||
|
||||
if(myTarget_limit < target)
|
||||
myTarget_limit = U_MAX_PTR; /* ptr wrapped */
|
||||
if(myTarget_limit < target) /*if targetsize is such that the limit*/
|
||||
myTarget_limit = U_MAX_PTR; /* would wrap around, truncate it. */
|
||||
|
||||
if (targetSize > 0)
|
||||
{
|
||||
|
@ -776,10 +776,6 @@ int32_t ucnv_fromUChars (const UConverter * converter,
|
|||
char *target2_alias = target2;
|
||||
const char *target2_limit = target2 + CHUNK_SIZE;
|
||||
|
||||
|
||||
if(target2_limit < target2)
|
||||
target2_limit = U_MAX_PTR; /* wrapped around */
|
||||
|
||||
/*We use a stack allocated buffer around which we loop
|
||||
*(in case the output is greater than CHUNK_SIZE)
|
||||
*/
|
||||
|
@ -856,8 +852,8 @@ int32_t ucnv_toUChars (const UConverter * converter,
|
|||
|
||||
myTarget_limit = target + targetSize - 1;
|
||||
|
||||
if(myTarget_limit < target) /* wrapped */
|
||||
myTarget_limit = U_MAX_PTR;
|
||||
if(myTarget_limit < target) /*if targetsize is such that the limit*/
|
||||
myTarget_limit = U_MAX_PTR - 1; /* would wrap around, truncate it. */
|
||||
|
||||
|
||||
/*Not in pure pre-flight mode */
|
||||
|
|
Loading…
Add table
Reference in a new issue