]> granicus.if.org Git - php/commitdiff
- MFH: Fixed bug #46382 (Mismatching allocation and deallocation in stresstest.cpp...
authorFelipe Pena <felipe@php.net>
Fri, 24 Oct 2008 23:17:04 +0000 (23:17 +0000)
committerFelipe Pena <felipe@php.net>
Fri, 24 Oct 2008 23:17:04 +0000 (23:17 +0000)
sapi/isapi/stresstest/stresstest.cpp

index c7e634c152727b1eea99b7b1747d7956ddd8756a..97824e6be8c85dd57e4f5fe2faf65b3a9b9c044f 100644 (file)
@@ -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)