summaryrefslogtreecommitdiff
path: root/Zend/zend.c
Commit message (Collapse)AuthorAgeFilesLines
* fix #34505 (possible memory corruption when unmangling properties with empty ↵Antony Dovgal2005-09-161-1/+1
| | | | | | | names) 1st part
* Fixed huge memory leak in ZTS mode (backport from HEAD)Dmitry Stogov2005-09-121-6/+15
|
* Bump up the yearfoobar2005-08-031-2/+2
|
* Fixed bug #33802 (throw Exception in error handler causes crash)Dmitry Stogov2005-07-221-11/+2
|
* - Fixed bug #31358 (Older GCC versions do not provide portable va_copy()).foobar2005-06-271-5/+12
|
* Fixed OS X compatibilityDmitry Stogov2005-06-151-1/+1
|
* Fixed bug #33212 ([GCC 4]: 'zend_error_noreturn' aliased to external symbol ↵Dmitry Stogov2005-06-131-0/+3
| | | | | | | 'zend_error'). The fix is not tested on Solaris and DARWIN!
* Fixed double call to php_stream_close() on compiler errorsDmitry Stogov2005-06-091-0/+2
|
* Fixed bug #25922 (In error handler, modifying 5th arg (errcontext) may ↵Dmitry Stogov2005-06-091-0/+3
| | | | result in seg fault)
* fix leakStanislav Malyshev2005-05-221-1/+4
|
* fix for #29890 - part 2Stanislav Malyshev2005-05-181-0/+1
|
* fix bug #29975 (memory leaks when set_error_handler() is used inside error ↵Antony Dovgal2005-05-131-1/+6
| | | | handler)
* fix bug #32924: prepend does not add file to included filesStanislav Malyshev2005-05-041-0/+4
|
* fix shutdown so that dl()'d modules are unloaded after all the dtors haveWez Furlong2005-03-151-0/+1
| | | | | been called.
* MFB: - Rationalize code a bitfoobar2005-01-091-9/+5
|
* port fix for #30998: Crash when user error handler returns false on amd64Stanislav Malyshev2004-12-061-1/+10
|
* - RecommitAndi Gutmans2004-09-091-1/+0
|
* - Roll back VM commitAndi Gutmans2004-09-091-0/+1
|
* - Drop namespace relictMarcus Boerger2004-09-091-1/+0
|
* Fix reverse dependencyZeev Suraski2004-09-051-0/+2
|
* - Second wave of garbage removal.Andi Gutmans2004-08-191-16/+0
|
* - Execute destructors earlier (Florian Schaper, fschaper at intux org)Marcus Boerger2004-07-251-0/+7
|
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-3/+3
| | | | | | | | | | | | | | | used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
* - Convert zend_class_entry -> zend_class_entry *Andi Gutmans2004-07-121-2/+2
|
* DragonFly BSD is derived from FreeBSD and requires the same floating pointJon Parise2004-07-101-4/+4
| | | | | precision fix.
* - If user error handler returns "false" then we relay to the built in errorAndi Gutmans2004-06-011-1/+1
| | | | | handler
* Allow user-defined error handlers to indicate whether default errorAndrei Zmievski2004-05-281-0/+3
| | | | | handler should be re-invoked, by returning true or false.
* Retval may not be set when zend_execute() is overloadedMarcus Boerger2004-04-171-1/+1
|
* - Add hook for exception handler (Derick)Andi Gutmans2004-04-131-0/+1
|
* - Fix Reflection class namesMarcus Boerger2004-03-301-0/+1
| | | | | | - Add ability to get the extension an internal class was defined in # This is the patch Andi and me used to search for underscrores...
* Initialize the complete structMarcus Boerger2004-03-281-1/+1
|
* try get handler on printable conversionStanislav Malyshev2004-03-281-3/+13
|
* Even though it is uncommented it should be rightMarcus Boerger2004-03-271-1/+1
|
* New autoload protection schema was implemented (Using HashTable instead of ↵Dmitry Stogov2004-03-241-1/+1
| | | | boolean flag)
* - Stop make_printable_zval() from calling __toString()Andi Gutmans2004-03-171-0/+2
|
* - Replaced the exec_finished hook by the zend_post_deactive hook forDerick Rethans2004-03-161-3/+3
| | | | | | extensions. The new hook will be run after the symbol table and destructors are run. (Derick)
* Fixed bug #27590 (crash during shutdown when freeing persistent resourcesIlia Alshanetsky2004-03-141-1/+1
| | | | | in ZTS mode).
* - Fix flow of logicAndi Gutmans2004-03-141-2/+4
|
* - Support Cast operator in convert_to_* so that we support internalAndi Gutmans2004-03-141-1/+2
| | | | | - extensions such as SimpleXML. This is for Sterling.
* - Fix crash in exception handling (zend_exception_error(...) andAndi Gutmans2004-03-011-4/+0
| | | | | zend_eval_string_ex() were buggy (Dmitry, Andi)
* - Rename compatiblity mode to zend.ze2_compatibility_mode (it doesn't only ↵Zeev Suraski2004-02-251-14/+2
| | | | | | | | | | | affect auto-clone). - Perform implementation checks even with simple inheritance (off when compatibility mode is enabled). - Restore default arguments in interfaces and handle it correctly. - Move registration of internal classes later in the startup sequence in order to have INI options available.
* Forward-port fixlet from PHP 4 (thanks to Michael Sisolak)Zeev Suraski2004-02-181-0/+1
|
* Centralize exceptions code in zend_exceptions.[ch].Zeev Suraski2004-02-121-1/+1
| | | | | | | | Remove zend_default_classes.h (use zend_exceptions.h instead) NOTE: This currently breaks the build, fixes to php-src and pecl coming soon
* Must be initialized in ZTS modeMarcus Boerger2004-02-111-0/+1
|
* Fix exceptions thrown without a stack frameZeev Suraski2004-02-111-6/+0
| | | | | Always enable set_exception_handler()
* Nice patch Christian, but it wasn't at all enabled? :)Zeev Suraski2004-01-151-1/+2
| | | | | Fix bug #26883
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - Fixed var_export() to show public, protected and private modifiers properly.Derick Rethans2004-01-031-1/+1
| | | | | - Exported (un)mangle_property_name.
* Add missing noticeMarcus Boerger2003-12-291-0/+1
|
* Fixed bug #26697 (calling class_exists on a nonexistent class in __autoloadMarcus Boerger2003-12-231-0/+1
| | | | | results in segfault).