ICU-10518 Fixed an infinite loop problem in observesDaylightTime() revealed by tzdata2013h integration.

X-SVN-Rev: 34618
This commit is contained in:
Yoshito Umaoka 2013-10-29 07:20:08 +00:00
parent ae7ffe938b
commit e980695446

View File

@ -362,6 +362,7 @@ public class OlsonTimeZone extends BasicTimeZone {
if (dstOffsetAt(trsIdx - 1) != 0) {
return true;
}
trsIdx--;
}
return false;
}