From cd7c10701cdca9c4b0f7ffb8b067ee5075436441 Mon Sep 17 00:00:00 2001 From: Eric Mader Date: Mon, 1 Aug 2005 22:11:01 +0000 Subject: [PATCH] ICU-4703 BEAM fix: it's OK to delete a null instance... X-SVN-Rev: 18375 --- icu4c/source/i18n/tridpars.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/i18n/tridpars.cpp b/icu4c/source/i18n/tridpars.cpp index 668005ca7e0..a67a6951a60 100644 --- a/icu4c/source/i18n/tridpars.cpp +++ b/icu4c/source/i18n/tridpars.cpp @@ -878,7 +878,7 @@ void TransliteratorIDParser::init(UErrorCode &status) { special_inverses = NULL; } umtx_unlock(&LOCK); - delete special_inverses; + delete special_inverses; /*null instance*/ ucln_i18n_registerCleanup(UCLN_I18N_TRANSLITERATOR, transliterator_cleanup); }