ICU-22307 Fix crash inside TimeZone

Return while the status fail without checking and cause crash
This commit is contained in:
Frank Tang 2023-03-16 15:52:04 -07:00 committed by Frank Yung-Fong Tang
parent cdeae44c6b
commit 3d31e72633

View file

@ -2642,6 +2642,9 @@ TimeZoneFormat::initGMTOffsetPatterns(UErrorCode& status) {
break;
}
}
if (U_FAILURE(status)) {
return;
}
checkAbuttingHoursAndMinutes();
}