mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-13352 Fix ordering of limit test and array ref in ufmt_utop
X-SVN-Rev: 40602
This commit is contained in:
parent
9ac09264c9
commit
7604adc4b3
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ ufmt_utop(const UChar *buffer,
|
|||
}
|
||||
|
||||
/* iterate through buffer, stop when you hit the end */
|
||||
while(ufmt_isdigit(buffer[count], 16) && count < *len) {
|
||||
while(count < *len && ufmt_isdigit(buffer[count], 16)) {
|
||||
/* increment the count consumed */
|
||||
++count;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue