summaryrefslogtreecommitdiff
path: root/Zend/zend_object_handlers.c
Commit message (Expand)AuthorAgeFilesLines
* Fixed bug #71474 (Crash because of VM stack corruption on Magento2).Dmitry Stogov2016-01-281-0/+2
* bump year which is missed in rev 49493a2Xinchen Hui2016-01-021-1/+1
* Fixed Bug #70967 (Weird error handling for __toString when Error is thrown)Xinchen Hui2015-11-281-1/+10
* Fixed bug #70873 (Regression on private static properties access)Xinchen Hui2015-11-071-2/+2
* Remove dead assignment in get_property_guardNikita Popov2015-10-011-2/+0
* Avoid reallocationsDmitry Stogov2015-09-141-3/+1
* Use efree_sizeXinchen Hui2015-09-101-1/+1
* UnexpectedXinchen Hui2015-09-101-4/+4
* cleanup tmp_member handlingXinchen Hui2015-09-101-6/+5
* Add myself into list of authors of the most refactored files.Dmitry Stogov2015-08-311-0/+1
* Fixed bug #70187 (Notice: unserialize(): Unexpected end of serialized data)Dmitry Stogov2015-08-261-4/+13
* Mark error and exception functions as "cold" (Matt's idea)Dmitry Stogov2015-08-191-1/+1
* Use NULL where possible for exception classAaron Piotrowski2015-07-071-28/+28
* Remove need to pass error levelAaron Piotrowski2015-07-031-28/+28
* Enable throwing custom exceptions from errorsAaron Piotrowski2015-07-031-28/+29
* Use ZSTR_ API to access zend_string elements (this is just renaming without s...Dmitry Stogov2015-06-301-43/+43
* Improved zend_string API (Francois Laupretre)Dmitry Stogov2015-06-291-4/+4
* Use COW to prevent unnecessary duplication of dynamic propertyes of stdClass ...Dmitry Stogov2015-06-171-15/+39
* Make convert_to_* safe with rc>1Nikita Popov2015-06-111-1/+1
* micro-optimizationDmitry Stogov2015-06-031-8/+7
* Fixed zend_update_class_constants() to always resolve all constants.Dmitry Stogov2015-05-211-2/+4
* Fixed bug #69534 (Cycle leaks through declared properties on internal classes)Dmitry Stogov2015-05-061-3/+9
* Micro optimizationsDmitry Stogov2015-04-281-8/+14
* Don't propogate "fake" EX(called_scope) and EX(This) into each internal funct...Dmitry Stogov2015-04-231-3/+4
* Use fast method to check if first arguments should be passed by reference (no...Dmitry Stogov2015-04-221-0/+3
* Fixed bug #69427 (Segfault on magic method __call of private method in superc...Xinchen Hui2015-04-111-1/+1
* Squashed commit of the following:Dmitry Stogov2015-04-101-114/+46
* Improved reference countingDmitry Stogov2015-04-031-1/+1
* Convert fatal errors into EngineExceptionsDmitry Stogov2015-04-021-1/+3
* Use zend_error_noreturn() for fatal errorsDmitry Stogov2015-04-011-2/+2
* Reclassify E_STRICT noticesNikita Popov2015-04-011-2/+2
* Converted most object handlers fatal errors into EngineExceptionsDmitry Stogov2015-04-011-28/+54
* Convert fatal errors on improper access to static properties into EngineExcep...Dmitry Stogov2015-03-311-3/+3
* Fixed zend_hash_append result duplicated keyXinchen Hui2015-03-081-1/+0
* Use fast zend_hash_append() APIDmitry Stogov2015-03-061-3/+5
* Only do this in debug buildXinchen Hui2015-02-211-0/+4
* Merged zend_array and HashTable into the single data structure.Dmitry Stogov2015-02-131-3/+1
* Fixed bug #69025 (Invalid read of size 4 when calling __callStatic)Dmitry Stogov2015-02-111-0/+2
* Move zend_object->guards into additional slot of zend_object->properties_tabl...Dmitry Stogov2015-02-041-6/+16
* Fixed Magic getter bug tickled by MoodleXinchen Hui2015-01-311-7/+11
* Partially revert 3477135cd1024c897dc070c37ddae411839b6e7eDmitry Stogov2015-01-161-2/+6
* Fixed build without alloca()Dmitry Stogov2015-01-151-0/+2
* Merge branch 'master' of git.php.net:php-srcDmitry Stogov2015-01-151-1/+1
|\
| * bump yearXinchen Hui2015-01-151-1/+1
* | Avoid usage of uninitialized dataDmitry Stogov2015-01-151-6/+3
|/
* Improved access to object properties (cache property offset instead of pointe...Dmitry Stogov2015-01-131-46/+104
* Handle run-time cache for static properties directly in executor.Dmitry Stogov2015-01-131-34/+21
* Improved access to static property. Now we cache pointers to zval instead of ...Dmitry Stogov2015-01-131-19/+21
* trailing whitespace removalStanislav Malyshev2015-01-101-4/+4
* Added new API function 'zend_string* zend_string_tolower(zend_string*)'.Dmitry Stogov2014-12-241-4/+3