mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-3222 fix compiler warnings
X-SVN-Rev: 13990
This commit is contained in:
parent
0bd632b567
commit
d57871f769
1 changed files with 4 additions and 4 deletions
|
@ -1923,7 +1923,7 @@ UConverter_toUnicode_ISO_2022_KR_OFFSETS_LOGIC_IBM(UConverterToUnicodeArgs *args
|
|||
do{
|
||||
|
||||
/*Find the end of the buffer e.g : Next Escape Seq | end of Buffer*/
|
||||
mySourceLimit = getEndOfBuffer_2022(&(args->source), mySourceLimit, args->flush);
|
||||
mySourceLimit = getEndOfBuffer_2022(&(args->source), args->sourceLimit, args->flush);
|
||||
|
||||
if (args->converter->mode == UCNV_SO) /*Already doing some conversion*/{
|
||||
saveThis = args->converter;
|
||||
|
@ -1941,19 +1941,19 @@ UConverter_toUnicode_ISO_2022_KR_OFFSETS_LOGIC_IBM(UConverterToUnicodeArgs *args
|
|||
/*-Done with buffer with entire buffer
|
||||
-Error while converting
|
||||
*/
|
||||
if (U_FAILURE(*err) || (args->source == mySourceLimit))
|
||||
if (U_FAILURE(*err) || (args->source == args->sourceLimit))
|
||||
return;
|
||||
|
||||
sourceStart = args->source;
|
||||
changeState_2022(args->converter,
|
||||
&(args->source),
|
||||
mySourceLimit,
|
||||
args->sourceLimit,
|
||||
ISO_2022_KR,
|
||||
err);
|
||||
/* args->source = sourceStart; */
|
||||
|
||||
|
||||
}while(args->source < mySourceLimit);
|
||||
}while(args->source < args->sourceLimit);
|
||||
/* return*/
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue