#
37acb31c |
| 29-Jul-2004 |
Sara Golemon |
&tmp and label are the same thing, don't free it till we're done with it.
|
#
8c844fdd |
| 29-Jul-2004 |
Sara Golemon |
Plug some memory leaks and promote unknown label to E_ERROR. If someone tries to jump to a non-existant label execution really shouldn't try to carry on.
|
#
5865b368 |
| 29-Jul-2004 |
Sara Golemon |
Add goto operator by popular request.
|
#
f5cf0522 |
| 25-Jul-2004 |
Marcus Boerger |
- Fix bug #29368 : The destructor is called when an exception is thrown from the constructor
|
#
5ff2111a |
| 23-Jul-2004 |
Marcus Boerger |
Fix 0 Byte leak after alloca to emalloc change
|
Revision tags: RELEASE_0_1 |
|
#
56f8195f |
| 19-Jul-2004 |
Andi Gutmans |
- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have
- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() 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.
show more ...
|
#
381a3b23 |
| 16-Jul-2004 |
Marcus Boerger |
Bugfix #28464 catch() does not catch exceptions by interfaces
|
Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8 |
|
#
a8996a8a |
| 12-Jul-2004 |
Ilia Alshanetsky |
Fixed bug #29086 & #28064 (PHP crashes on extremly long scripts).
|
#
a4032b68 |
| 24-Jun-2004 |
Sara Golemon |
Ease off on severity of new error (Using Resources as array offsets)
|
#
56b15339 |
| 23-Jun-2004 |
Sara Golemon |
BugFix #28879 Inconsistent behavior between explicit and implicit array creation. Changes: Throw E_WARNING "Illegal offset type" when explicitly creating array elements with ob
BugFix #28879 Inconsistent behavior between explicit and implicit array creation. Changes: Throw E_WARNING "Illegal offset type" when explicitly creating array elements with objects, arrays, or resorces as indexes. This matches implicit creation w/ obj/arr indices. Throw E_WARNING "Resource ID#%ld used as offset, casting to integer (%ld)" when implicitly creating array with resource as index. (BC)
show more ...
|
#
2f7c5d30 |
| 18-Jun-2004 |
Sara Golemon |
Another typo in converting array index doubles to long.
|
Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7 |
|
#
176f6d8e |
| 02-Jun-2004 |
Stanislav Malyshev |
fix incdec - make value's refcount non-zero when passing to write_property - otherwise __set caller cleanup could kill it.
|
#
0ef420a7 |
| 28-May-2004 |
Marcus Boerger |
Prevent possible problems with illegal properties
|
Revision tags: php-5.0.0RC3RC1 |
|
#
bca3e304 |
| 27-May-2004 |
Andi Gutmans |
- Fix problem with exceptions returning from include(). (Dmitry)
|
Revision tags: php-4.3.7RC1, RELEASE_0_1_1 |
|
#
b094db39 |
| 18-May-2004 |
Sara Golemon |
Bugfix#28404 When type is double we need to access dval, not lval
|
#
239ae7b5 |
| 29-Apr-2004 |
Stanislav Malyshev |
Fix bug #27876
|
Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2 |
|
#
a455d784 |
| 15-Apr-2004 |
Marcus Boerger |
Handle failure in get_current_data
|
Revision tags: php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2 |
|
#
962c8cc9 |
| 01-Apr-2004 |
Ilia Alshanetsky |
Fixed reversed condition for error reporting.
|
Revision tags: php-4.3.6RC1 |
|
#
d00b6c7c |
| 31-Mar-2004 |
Dmitry Stogov |
Fixed BUG in zend_post_incdec_property
|
#
c29e9277 |
| 29-Mar-2004 |
Sebastian Bergmann |
-clonning+cloning
|
#
75d1e4ca |
| 29-Mar-2004 |
Dmitry Stogov |
Implicit clonning strict warning was added for ze1_compatibility_mode
|
#
62c80d5e |
| 29-Mar-2004 |
Ilia Alshanetsky |
Fixed bug #27731 (error_reporting() inside @ block fails to set error_reporting level).
|
#
9be3c938 |
| 28-Mar-2004 |
Stanislav Malyshev |
- call set handler if assigning to object having this handler - cleanup: use macros to access object internal vars
|
#
43d04ee2 |
| 26-Mar-2004 |
Andi Gutmans |
- Fix build (thanks to Timm)
|
#
7a98f60e |
| 25-Mar-2004 |
Stanislav Malyshev |
no need to use result for RECV's - as in PHP4
|