summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* MF53: - Fixed bug #49000 (PHP CLI in Interactive mode (php -a) crashes when ↵Jani Taskinen2009-08-311-0/+7
| | | | including files from function), see also bug #49405
* fix crash when unexpectedly passed by-ref parameter is modifiedStanislav Malyshev2009-08-181-0/+6
|
* - Fixed bug #47801 (__call() accessed via parent:: operator is provided ↵Felipe Pena2009-04-081-4/+1
| | | | incorrect method name)
* Fixed possible crash because of argument stack reallocationDmitry Stogov2009-01-151-0/+20
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Fixed bug #46246 (difference between call_user_func(array($this, $method)) ↵Dmitry Stogov2008-10-101-1/+3
| | | | and $this->$method())
* Fixed shared memory corruption of opcode cachesDmitry Stogov2008-03-041-0/+23
|
* MFH: Fixed bug #43128 (Very long class name causes segfault)Dmitry Stogov2008-02-151-8/+9
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Fixed compiler warningsJani Taskinen2007-07-211-2/+2
|
* Fixed bug #41633 (Crash instantiating classes with self-referencing constants)Dmitry Stogov2007-06-131-1/+9
|
* Fixed some class constant issues related to bug #41633Dmitry Stogov2007-06-131-0/+7
|
* MFHAntony Dovgal2007-05-211-1/+1
|
* MFH: fix #41421 (Uncaught exception from a stream wrapper segfaults)Antony Dovgal2007-05-181-0/+8
|
* MFH: initialize retval_ptr_ptr before returning FAILUREAntony Dovgal2007-04-271-5/+2
| | | | | this fixes invalid read in #41209
* WIN64 supportDmitry Stogov2007-04-161-3/+3
|
* fix #40815 (using strings like "class::func" and static methods in ↵Antony Dovgal2007-03-151-1/+1
| | | | set_exception_handler() might result in crash)
* - Catch empty class name error earlierMarcus Boerger2007-03-031-1/+1
|
* Fixed bug #40236 (php -a function allocation eats memory)Dmitry Stogov2007-02-151-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Avoid strcpy() & strcat()Ilia Alshanetsky2006-12-281-5/+8
|
* MFHAntony Dovgal2006-12-211-0/+5
|
* Start timiout thread on Windows only if necessaryDmitry Stogov2006-11-101-1/+6
|
* - MFH: added missing return...Johannes Schlüter2006-10-181-1/+1
|
* - MFH: Fix #38465 (ReflectionParameter fails if default value is an access ↵Johannes Schlüter2006-10-181-3/+7
| | | | to self::
* MFHAntony Dovgal2006-10-111-0/+2
|
* Fixed wrong return valueDmitry Stogov2006-09-281-1/+1
|
* MFH: fix #38779 (engine crashes when require()'ing file with syntax error ↵Antony Dovgal2006-09-111-0/+7
| | | | through userspace stream wrapper)
* Fixed bug #36759 (Objects destructors are invoked in wrong order when script ↵Dmitry Stogov2006-07-121-0/+14
| | | | is finished).
* MFH: Added hook for compile_string()Stefan Esser2006-06-131-1/+1
|
* Restore ZE1 compatibility mode (Zend Engine part - the modules patchesZeev Suraski2006-06-051-0/+7
| | | | | will follow later today)
* Fixed bug #37558 (timeout functionality doesn't work after a second PHP ↵Dmitry Stogov2006-05-251-0/+1
| | | | starup on the same thread). (p dot desarnaud at wanadoo dot fr)
* - MFH as discussedMarcus Boerger2006-05-091-35/+28
| | | | | | | | | | | | | | | | | | | | | . zend_exception_get_default() -> zend_exception_get_default(TSRMLS_D) . zend_get_error_exception() -> zend_get_error_exception(TSRMLS_D) . added E_RECOVERABLE_ERROR . added ZEND_TOSTRING_FUNC_NAME . added __tostring function cache to zend_class_entry . added ZEND_NAMED_ME . modified ZEND_ME_MAPPING to support method flags . added ZEND_MN . method entries now use prefix "zim_" instead of "zif_" . drop EG(ze1_compatibility_mode) . changed cast handler, now without (int should_free): typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC); . changed get_iterator, now receives whether value is by ref: zend_object_iterator *(*get_iterator)(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); . added zend_objects_store_add_ref_by_handle . added zend_objects_store_del_ref_by_handle . convert_to_explicit_type(pzv, type)
* there is no %v in 5_1Antony Dovgal2006-04-201-1/+1
|
* FIX: For some reason SIGSEGV handler wasn't set, but was restoring. Now all ↵Dmitry Stogov2006-03-171-2/+2
| | | | SIGSEGV related code is commented.
* zend_hash_apply() doesn't use ZEND_HASH_APPLY_... macrosDmitry Stogov2006-03-141-2/+2
|
* Optimized cleanup loops on request shutdownDmitry Stogov2006-03-131-17/+25
|
* Fixed incorrect backtrace type ("::" instead of "->") for __set()/__get()Dmitry Stogov2006-03-031-0/+5
|
* - Warning fixes by StephMarcus Boerger2006-02-261-1/+1
|
* - MFH: Function deprecation flagMarcus Boerger2006-02-251-0/+12
|
* - MFH Fix issues with static method invocationMarcus Boerger2006-01-221-8/+14
|
* MFH: make sure ce_child is properly initializedAntony Dovgal2006-01-181-1/+1
|
* - Update copyright notices to 2006Andi Gutmans2006-01-041-1/+1
|
* Fixed bug #35612 (iis6 Access Violation crash). (alacn dot uhahaa at gmail ↵Dmitry Stogov2005-12-221-1/+3
| | | | dot com)
* fix leak appearing when __autoload() throws an exceptionAntony Dovgal2005-12-201-1/+3
|
* - Simplify and synch is_callable_ex() with actual execution codeMarcus Boerger2005-12-161-8/+42
| | | | | | . Allow array($this, 'parent::method') for function 'pointers' . Spit out E_STRICT in case of erroneous use of function 'pointers'