mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 13:35:32 +00:00
ICU-22730 Fix int32_t overflow in Persian calendar
This commit is contained in:
parent
b3bf9f8c27
commit
48cc8785f2
1 changed files with 2 additions and 1 deletions
|
@ -217,7 +217,8 @@ int32_t PersianCalendar::handleGetExtendedYear(UErrorCode& status) {
|
|||
* method is called.
|
||||
*/
|
||||
void PersianCalendar::handleComputeFields(int32_t julianDay, UErrorCode& status) {
|
||||
int64_t daysSinceEpoch = julianDay - PERSIAN_EPOCH;
|
||||
int64_t daysSinceEpoch = julianDay;
|
||||
daysSinceEpoch -= PERSIAN_EPOCH;
|
||||
int64_t year = ClockMath::floorDivideInt64(
|
||||
33LL * daysSinceEpoch + 3LL, 12053LL) + 1LL;
|
||||
if (year > INT32_MAX || year < INT32_MIN) {
|
||||
|
|
Loading…
Add table
Reference in a new issue