From ea597d89d1a21e7ceb80f63602956a852675ccaa Mon Sep 17 00:00:00 2001 From: Michael Ow Date: Tue, 8 Dec 2015 05:13:49 +0000 Subject: [PATCH] ICU-11961 Fix delete statement X-SVN-Rev: 38111 --- icu4c/source/test/intltest/simplethread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/test/intltest/simplethread.cpp b/icu4c/source/test/intltest/simplethread.cpp index ad25d16d7cb..8aae4b8d052 100644 --- a/icu4c/source/test/intltest/simplethread.cpp +++ b/icu4c/source/test/intltest/simplethread.cpp @@ -331,7 +331,7 @@ ThreadPoolBase::~ThreadPoolBase() { delete fThreads[i]; fThreads[i] = NULL; } - delete fThreads; + delete[] fThreads; fThreads = NULL; } }