summaryrefslogtreecommitdiff
path: root/Zend/tests/bug74053.phpt
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #74053 (Corrupted class entries on shutdown when a destructor ↵Dmitry Stogov2017-02-101-1/+1
| | | | | | | | | | | | | spawns another object). (jim at commercebyte dot com) Merge branch 'master' of github.com:commercebyte/php-src * 'master' of github.com:commercebyte/php-src: Added EG(flags) - executor global flags EG_FLAGS_IN_SHUTDOWN - is set when PHP is in shutdown state newly added zend_object_store.no_reuse is redefined as a global zend_object_store_no_reuse, to avoid alignment issues Alignment fix, as per @nikic The test scripts bug64720.phpt and bug68652.phpt were relying on the buggy behavior, when PHP returns "Undefined static property" error due to class entry corruption. With my fix for bug 74053, both tests return no errors now, I corrected the EXPECTF accordingly Bug Fix: Corrupted class entries on shutdown when a destructor spawns another object (C) 2017 CommerceByte Consulting
* The test scripts bug64720.phpt and bug68652.phpt were relying on the buggy ↵Jim Zubov2017-02-071-0/+43
behavior, when PHP returns "Undefined static property" error due to class entry corruption. With my fix for bug 74053, both tests return no errors now, I corrected the EXPECTF accordingly [Anybody please advice if I'm wrong?] Also created bug74053.phpt, for the code I mentioned in the bug description