summaryrefslogtreecommitdiff
path: root/Zend/zend_exceptions.c
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Merge branch 'PHP-5.3' into PHP-5.4Johannes Schlüter2012-12-131-15/+39
|\
| * Fix Bug #63762 Sigsegv when Exception::$trace is changed by userJohannes Schlüter2012-12-131-15/+39
| |
| * Fixed bug #60569 (Nullbyte truncates Exception $message).Ilia Alshanetsky2012-03-111-1/+1
| |
| * - Year++Felipe Pena2012-01-011-1/+1
| |
| * Fix bug #47143, bug #51458 - provide more useful info in bad exception casesStanislav Malyshev2011-01-161-0/+3
| |
| * - Year++Felipe Pena2011-01-011-1/+1
| |
| * Fixed memory leaks (related to bug #52361)Dmitry Stogov2010-08-161-4/+5
| |
| * separate properties of internal classes in ZTS mode fully,Sascha Schumann2010-08-121-1/+1
| | | | | | | | | | | | otherwise multiple threads will modify the zvals' contents without any synchronisation.
* | make default_exception_ce and error_exception_ce staticNuno Lopes2012-08-021-2/+2
| |
* | Fixed bug #60569 (Nullbyte truncates Exception $message).Ilia Alshanetsky2012-03-111-1/+1
| |
* | - Year++Felipe Pena2012-01-011-1/+1
| |
* | Fixed ZE specific compile warnings (Bug #55629)Dmitry Stogov2011-09-131-2/+2
| |
* | - Fix bug #55471, fix zts build with dtrace (Laruense)Pierre Joye2011-08-211-1/+1
| |
* | Add optional argument to debug_backtrace() and debug_print_backtrace() to ↵Sebastian Bergmann2011-04-091-1/+1
| | | | | | | | limit the amount of stack frames returned.
* | Fix bug #47143, bug #51458 - provide more useful info in bad exception casesStanislav Malyshev2011-01-161-0/+3
| |
* | - Year++Felipe Pena2011-01-011-1/+1
| |
* | - Fixed bug #53306 (php crashes with segfault when DTrace "exception-thrown" ↵Felipe Pena2010-11-171-2/+7
| | | | | | | | | | | | | | probe fires) patch by: mike at harschsystems dot com
* | Revert unintended modificationDmitry Stogov2010-08-181-1/+1
| |
* | Fixed memory leaks (related to bug #52361)Dmitry Stogov2010-08-161-5/+7
| |
* | Added caches to eliminate repeatable run-time bindings of functions, ↵Dmitry Stogov2010-05-241-4/+2
| | | | | | | | classes, constants, methods and properties
* | fix ~450 tests and 25 segfaultsAntony Dovgal2010-04-251-1/+1
| | | | | | | | | | make test, anyone?
* | Add DTrace probesDavid Soria Parra2010-04-241-0/+10
|/
* sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-051-1/+1
|
* - MFH: Fix code && new testFelipe Pena2009-05-111-2/+7
|
* - Added missing param checksFelipe Pena2009-05-111-0/+7
|
* - MFH Catch exceptions in cli -aMarcus Boerger2009-01-021-4/+4
|
* 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-1/+1
| | | | using array_map)
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-2/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+2
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-2/+0
|
* - MFH Improve exception linkingMarcus Boerger2008-08-141-8/+36
|
* Fixed memory leakDmitry Stogov2008-07-291-0/+1
|
* - MFH: Added TSRMLS_DC to apply_func_args_t and zend_hash_apply_with_arguments.Felipe Pena2008-07-241-6/+4
|
* - MFH Exception handlingMarcus Boerger2008-07-131-7/+31
| | | | | | | | | | [DOC] - Exceptions can be thrown while exceptions are pending, they are linked - Exceptions can be handled in __destruct - Add optional Exception $previous parameter to . Exception::__construct . ErrorException::__construct
* apply correct fixAntony Dovgal2008-07-131-1/+2
|
* fix segfault in Exception::__toString()Antony Dovgal2008-07-131-1/+0
|
* - Missed one line in mergeMarcus Boerger2008-07-121-0/+1
|
* - MFH Add support for linking exceptions (implements TODO)Marcus Boerger2008-07-121-45/+73
|
* Fixed bug #44226 (Throwing an exception causes crash in multithreaded SAPI)Dmitry Stogov2008-04-171-17/+0
|
* MFH: Added new macro for check void parameters.Felipe Pena2008-03-101-2/+2
| | | | | (deprecating ZEND_WRONG_PARAM_COUNT for this cases)
* Changed exception handling. Now each op_array doesn't contain ↵Dmitry Stogov2008-01-211-1/+19
| | | | ZEND_HANDLE_EXCEPTION opcode in the end
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-2/+2
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-2/+2
|
* MFHAntony Dovgal2007-05-301-2/+2
|
* fix foldingAntony Dovgal2007-01-181-38/+41
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* is_numeric_string() optimizationIlia Alshanetsky2006-12-261-1/+1
| | | | | # Original Patch by Matt Wilmas