From 483192a1e2e2c78d492a730b89337baeb92a3b50 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Thu, 28 Oct 1999 02:02:53 +0000 Subject: [PATCH] [ICU-66] Fix some uninitialized memory problems in date format [caused ccaltst to fail] X-Commit-URL: https://ssl.icu-project.org/trac/changeset/135 --- icu4c/source/i18n/timezone.cpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/icu4c/source/i18n/timezone.cpp b/icu4c/source/i18n/timezone.cpp index 7917f1deca9..60f30b10efb 100644 --- a/icu4c/source/i18n/timezone.cpp +++ b/icu4c/source/i18n/timezone.cpp @@ -2146,15 +2146,11 @@ TimeZone::getDisplayName(bool_t daylight, EDisplayType style, const Locale& loca // We don't cache these because they're small and cheap to create. UnicodeString tempID; SimpleTimeZone *tz = daylight ? - // For the pure-DST zone, we use the month before JANUARY and - // the month after DECEMBER; if this fails to work at some future - // date because of increased error checking in SimpleTimeZone, - // change these parameters to JANUARY and DECEMBER, which will - // work equally well, but will be slower. + // For the pure-DST zone, we use JANUARY and DECEMBER new SimpleTimeZone(getRawOffset(), getID(tempID), - Calendar::JANUARY - 1, 1, 0, 0, - Calendar::DECEMBER + 1, 31, 0, U_MILLIS_PER_DAY, status) : + Calendar::JANUARY , 1, 0, 0, + Calendar::DECEMBER , 31, 0, U_MILLIS_PER_DAY, status) : new SimpleTimeZone(getRawOffset(), getID(tempID)); format.applyPattern(style == LONG ? "zzzz" : "z"); @@ -2164,7 +2160,7 @@ TimeZone::getDisplayName(bool_t daylight, EDisplayType style, const Locale& loca delete tz; FieldPosition pos(FieldPosition::DONT_CARE); - return format.format(UDate(), result, pos); // Doesn't matter what date we use + return format.format(UDate(196262345678.), result, pos); // Must use a valid date here. }