|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-10-24 23:17 UTC] felipe@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 01:00:01 2025 UTC |
Description: ------------ In file sapi/isapi/stresstest/stresstest.cpp:274 HANDLE *threads = new HANDLE[numThreads]; <code removed> delete threads; You allocate memory using [], but you delete the memory without []. This is illegal in C++. If you allocate with [] you should also delete with []. I didn't check if the problem is with earlier versions also.