summaryrefslogtreecommitdiff
path: root/sapi/isapi
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-10-24 23:16:46 +0000
committerFelipe Pena <felipe@php.net>2008-10-24 23:16:46 +0000
commit8fa119a6f62d8ee8432d69bf97b51bb05f250441 (patch)
tree534609e824a0656e4297b766ef5a21fdc533ff15 /sapi/isapi
parent73f81e9df67c8d19d2fc6f4404cfd114ef6030d8 (diff)
downloadphp-git-8fa119a6f62d8ee8432d69bf97b51bb05f250441.tar.gz
- MFH: Fixed bug #46382 (Mismatching allocation and deallocation in stresstest.cpp) (dvice_null at yahoo dot com)
Diffstat (limited to 'sapi/isapi')
-rw-r--r--sapi/isapi/stresstest/stresstest.cpp2
1 files changed, 1 insertions, 1 deletions
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)