From 01b1c57f6ad99cdec9b9da5b3db180c3133f5d9a Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Fri, 24 Oct 2008 23:16:16 +0000 Subject: [PATCH] - Fixed bug #46382 (Mismatching allocation and deallocation in stresstest.cpp) (dvice_null at yahoo dot com) --- sapi/isapi/stresstest/stresstest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/isapi/stresstest/stresstest.cpp b/sapi/isapi/stresstest/stresstest.cpp index c7e634c152..97824e6be8 100644 --- a/sapi/isapi/stresstest/stresstest.cpp +++ b/sapi/isapi/stresstest/stresstest.cpp @@ -271,7 +271,7 @@ void DoThreads() { for (i=0; i< numThreads; i++) { CloseHandle(threads[i]); } - delete threads; + delete [] threads; } void DoFileList(const char *filelist, const char *environment) -- 2.50.1