From 7338625b676b7827231ad822261d02d980938df7 Mon Sep 17 00:00:00 2001 From: Yoshito Umaoka Date: Wed, 29 Nov 2017 22:38:23 +0000 Subject: [PATCH] ICU-12924 Merging a fix for zonemeta double free issue (#13301/r40324) from trunk to maint-58. X-SVN-Rev: 40676 --- icu4c/source/i18n/zonemeta.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/icu4c/source/i18n/zonemeta.cpp b/icu4c/source/i18n/zonemeta.cpp index fdf333c3712..dd3bf202f28 100644 --- a/icu4c/source/i18n/zonemeta.cpp +++ b/icu4c/source/i18n/zonemeta.cpp @@ -683,7 +683,6 @@ ZoneMeta::createMetazoneMappings(const UnicodeString &tzid) { mzMappings = new UVector(deleteOlsonToMetaMappingEntry, NULL, status); if (U_FAILURE(status)) { delete mzMappings; - deleteOlsonToMetaMappingEntry(entry); uprv_free(entry); break; }