Source: https://unicode-org.atlassian.net/browse/ICU-22132?focusedCommentId=166752 Author: Sean Burke License: Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1843007 diff --git a/icu4c/source/i18n/vtzone.cpp b/icu4c/source/i18n/vtzone.cpp index 3035106701..5e738e11fa 100644 --- a/source/i18n/vtzone.cpp +++ b/source/i18n/vtzone.cpp @@ -1735,14 +1735,14 @@ VTimeZone::write(VTZWriter& writer, UErrorCode& status) const { } } } else { - UnicodeString icutzprop; - UVector customProps(nullptr, uhash_compareUnicodeString, status); + UVector customProps(uprv_deleteUObject, uhash_compareUnicodeString, status); if (olsonzid.length() > 0 && icutzver.length() > 0) { - icutzprop.append(olsonzid); - icutzprop.append(u'['); - icutzprop.append(icutzver); - icutzprop.append(u']'); - customProps.addElement(&icutzprop, status); + LocalPointer icutzprop(new UnicodeString(ICU_TZINFO_PROP), status); + icutzprop->append(olsonzid); + icutzprop->append(u'['); + icutzprop->append(icutzver); + icutzprop->append(u']'); + customProps.adoptElement(icutzprop.orphan(), status); } writeZone(writer, *tz, &customProps, status); } b2fee0'>treecommitdiff
path: root/gnu/packages/maven-parent-pom.scm
AgeCommit message (Expand)Author
2024-04-20gnu: Add maven-parent-pom-37....* gnu/packages/maven-parent-pom.scm (maven-parent-pom-37): New variable. Change-Id: I572eea2548006929577ba72dfe022ddb22373099 Julien Lepiller
2024-04-20gnu: Add apache-parent-pom-27....* gnu/packages/maven-parent-pom.scm (apache-parent-pom-27): New variable. Change-Id: Ic8ad7747dfa32621532fd7449735bdcd6adefc1e Julien Lepiller
2024-04-20gnu: Add maven-parent-pom-39....* gnu/packages/maven-parent-pom.scm (maven-parent-pom-39): New variable. Change-Id: I9a2b203a0d0b4d2fb59d02077df2d607f59d953f Julien Lepiller
2024-04-20gnu: Add apache-parent-pom-29....* gnu/packages/maven-parent-pom.scm (apache-parent-pom-29): New variable. Change-Id: Ia369e90b4e0c861729dabe8c331baab2b1efe7ce Julien Lepiller