From: Jeff Genovy <29107334+jefgen@users.noreply.github.com> Date: Wed, 2 May 2018 20:46:17 +0000 (+0000) Subject: ICU-13749 Fix issue with tabs to spaces in previous commit. X-Git-Tag: release-62-rc~164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37e2209f6689553d00415b3242adf90f713093cc;p=icu ICU-13749 Fix issue with tabs to spaces in previous commit. X-SVN-Rev: 41311 --- diff --git a/icu4c/source/i18n/zonemeta.cpp b/icu4c/source/i18n/zonemeta.cpp index 9adbe6d8a30..02562048a52 100644 --- a/icu4c/source/i18n/zonemeta.cpp +++ b/icu4c/source/i18n/zonemeta.cpp @@ -690,7 +690,7 @@ ZoneMeta::createMetazoneMappings(const UnicodeString &tzid) { mzMappings = new UVector(deleteOlsonToMetaMappingEntry, NULL, status); if (U_FAILURE(status)) { delete mzMappings; - mzMappings = NULL; + mzMappings = NULL; uprv_free(entry); break; }