ICU-13352 Fix ordering of limit test and array ref in ufmt_utop

X-SVN-Rev: 40602
This commit is contained in:
Peter Edberg 2017-10-09 06:57:17 +00:00
parent 9ac09264c9
commit 7604adc4b3

View file

@ -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;
}