From 48d1b3a51a1edd84520a31888ab5ebb53be4bbd5 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Fri, 24 Oct 2008 23:17:04 +0000 Subject: [PATCH] - MFH: 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 c7e634c1527..97824e6be8c 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)