Index: src/locale.cpp =================================================================== --- src/locale.cpp +++ src/locale.cpp @@ -4640,7 +4640,7 @@ string* init_am_pm() { - static string am_pm[24]; + static string am_pm[2]; am_pm[0] = "AM"; am_pm[1] = "PM"; return am_pm; @@ -4650,7 +4650,7 @@ wstring* init_wam_pm() { - static wstring am_pm[24]; + static wstring am_pm[2]; am_pm[0] = L"AM"; am_pm[1] = L"PM"; return am_pm;