From 8341bf4d87e2e599a2de2b1f69fa16a0e86e3855 Mon Sep 17 00:00:00 2001 From: Eric Mader Date: Wed, 19 Apr 2006 18:38:46 +0000 Subject: [PATCH] ICU-5161 call fontInstance->deleteNameString instead of DELETE_ARRAY. X-SVN-Rev: 19565 --- icu4c/source/test/letest/letest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/icu4c/source/test/letest/letest.cpp b/icu4c/source/test/letest/letest.cpp index f9f36b5d0f..e34ca634f9 100644 --- a/icu4c/source/test/letest/letest.cpp +++ b/icu4c/source/test/letest/letest.cpp @@ -378,7 +378,8 @@ static void checkFontVersion(PortableFontInstance *fontInstance, const char *tes log_info("Your font's version string is \"%s\"\n", fontVersionString); log_info("The expected version string is \"%s\"\n", testVersionString); log_info("If you see errors, they may be due to the version of the font you're using.\n"); - DELETE_ARRAY(fontVersionString); + + fontInstance->deleteNameString(fontVersionString); } }