Browse Source

- MFH: Fixed bug #46382 (Mismatching allocation and deallocation in stresstest.cpp) (dvice_null at yahoo dot com)

PHP-5.2.1RC1
Felipe Pena 18 years ago
parent
commit
48d1b3a51a
  1. 2
      sapi/isapi/stresstest/stresstest.cpp

2
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)

Loading…
Cancel
Save