From: Felipe Pena Date: Fri, 24 Oct 2008 23:16:16 +0000 (+0000) Subject: - Fixed bug #46382 (Mismatching allocation and deallocation in stresstest.cpp) (dvice... X-Git-Tag: BEFORE_HEAD_NS_CHANGE~166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01b1c57f6ad99cdec9b9da5b3db180c3133f5d9a;p=php - Fixed bug #46382 (Mismatching allocation and deallocation in stresstest.cpp) (dvice_null at yahoo dot com) --- 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)