summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #54367 (Use of closure causes problem in ArrayAccess)Dmitry Stogov2011-05-111-9/+11
|
* Fixed bug #54268 (Double free when destroy_zend_class fails)Dmitry Stogov2011-04-151-0/+2
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* Fixed bug #52939 (zend_call_function does not respect ZEND_SEND_PREFER_REF)Dmitry Stogov2010-10-131-1/+2
|
* - Fixed bug #51905 (ReflectionParameter fails if default value is an array ↵Felipe Pena2010-05-261-1/+13
| | | | with an access to self::)
* fix #51394 - try harder to find script lineno when exception happensStanislav Malyshev2010-04-011-0/+4
|
* - Fixed bug #50731 (Inconsistent namespaces sent to functions registered ↵Felipe Pena2010-03-031-1/+5
| | | | with spl_autoload_register)
* - Ensure that stderr output are not buffered, portability for testsPierre Joye2010-01-251-0/+4
|
* sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-051-1/+1
|
* fix regression bug #50394: Reference argument converted to value in __callStanislav Malyshev2009-12-181-0/+1
|
* Fixed unnecessary invokation of setitimer when timeouts have been disabled ↵Dmitry Stogov2009-11-051-1/+1
| | | | (Arvind Srinivasan)
* - WS fix (spaces to tabs)Moriyoshi Koizumi2009-09-151-1/+1
|
* fix crash when unexpectedly passed by-ref parameter is modifiedStanislav Malyshev2009-08-181-0/+6
|
* fix for bug #49000Stanislav Malyshev2009-07-301-0/+7
|
* MFH: Added zend_eval_stringl and made create_function(), etc. binary-safeMatt Wilmas2009-06-051-7/+18
|
* MFH:Matt Wilmas2009-06-041-1/+1
| | | | | | | | | | | | | | | | | | Restored double->long conversion behavior to that of PHP 5.2 (on most platforms) and prior: * Out-of-range numbers overflow/preserve least significant bits (no LONG_MAX/MIN limit) * See bug #42868 (presumably-rare platform with different results in 5.2) * On 32-bit platforms with 64-bit long type, a zend_long64 cast has been added, otherwise it's the same as 5.2 * Use this conversion method everywhere instead of some plain (long) casts Added 'L' parameter parsing specifier to ensure a LONG_MAX/MIN limit: * Essentially what 5.3's new conversion was doing in most cases * Functions with "limit" or "length" type params could be updated to use this, and prevent confusing overflow behavior with huge numbers (*also* in 5.2) - See bug #47854, for example; or even #42868 again # Test updates coming
* Calculate hash value onceDmitry Stogov2009-04-081-4/+7
|
* MFH: Removed extra space from eval stringMatt Wilmas2009-03-191-2/+1
|
* Forgotten includeDmitry Stogov2009-03-181-0/+1
|
* Fixed floating point mathematic speed degradation (Christian)Dmitry Stogov2009-03-181-0/+5
|
* - Fixed typoFelipe Pena2009-03-051-3/+3
|
* - MFH: Fixed bug #47572 (zval_update_constant_ex: Segmentation fault)Felipe Pena2009-03-051-3/+5
|
* Fixed bug #47320 ($php_errormsg out of scope in functions)Dmitry Stogov2009-02-091-8/+8
|
* - MFH Catch exceptions in cli -aMarcus Boerger2009-01-021-2/+2
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-271-13/+13
| | | | using array_map)
* - Fixed bug #46665 (Triggering autoload with a variable classname causes ↵Felipe Pena2008-11-251-6/+7
| | | | truncated autoload param)
* MFH: Fix #46241 (stacked error_handlers, error_handling in general)Etienne Kneuss2008-11-191-6/+0
|
* make sure the slash is actually thre before reading past itAntony Dovgal2008-11-121-3/+3
|
* Namespace resolution streamlining patchStanislav Malyshev2008-11-111-29/+6
| | | | | [DOC] new resolution rules should be documented soon
* - Fixed Windows buildFelipe Pena2008-11-051-2/+2
|
* - Next step in namespaces, using / as namespace separator.Marcus Boerger2008-11-041-33/+77
|
* MFH: Use enum alternative instead of explicit valueEtienne Kneuss2008-10-021-1/+1
|
* MFH: initialize variableAntony Dovgal2008-10-011-0/+1
|
* Fixed bug #46106 (Memory leaks when using global statement)Dmitry Stogov2008-09-171-13/+25
|
* MFH: Fix #45656 (new Class silenting exceptions in autoloaders)Etienne Kneuss2008-09-151-14/+6
|
* Fixed bug #45910 (Cannot declare self-referencing constant)Dmitry Stogov2008-08-261-5/+11
|
* - MFH Improve exception linkingMarcus Boerger2008-08-141-5/+5
|
* mark empty_fcall_info and empty_fcall_info_cache as constant. a few less ↵Nuno Lopes2008-08-121-2/+2
| | | | bytes in the dirty page :P
* - MFH Fix shutdown orderMarcus Boerger2008-08-111-1/+2
|
* - MFH error handling, now with save, replace, restoreMarcus Boerger2008-08-081-9/+6
|
* - MFH store error handling mode on stack when executing internalMarcus Boerger2008-08-081-2/+9
| | | | | or overloaded functions and methods. [...]
* Fixed bug #44100 (Inconsistent handling of static array declarations with ↵Dmitry Stogov2008-08-011-4/+4
| | | | duplicate keys).
* *** empty log message ***Dmitry Stogov2008-07-261-4/+4
|
* Added checks for destroied objectsDmitry Stogov2008-07-261-1/+3
|
* Added support for overloaded functions (e.g. COM) in call_user_func().Dmitry Stogov2008-07-261-1/+21
|
* Fixed is_callable/call_user_func mess that had done different things for ↵Dmitry Stogov2008-07-261-291/+35
| | | | very similar arguments e.g. array("A","B") and "A::B"
* Fixed uninitialised dataDmitry Stogov2008-07-251-0/+1
|
* LSB parent/self forwardingDmitry Stogov2008-07-241-14/+37
|
* Added support for lambda functions and closuresDmitry Stogov2008-07-141-1/+8
|