changelog Tue Mar 2 20:33:19 2004 EDT
Modified files:
/ZendEngine2 ChangeLog
Log:
ChangeLog update
http://cvs.php.net/diff.php/ZendEngine2/ChangeLog?r1=1.419&r2=1.420&ty=u
Index: ZendEngine2/ChangeLog
diff -u ZendEngine2/ChangeLog:1.419 ZendEngine2/ChangeLog:1.420
--- ZendEngine2/ChangeLog:1.419 Mon Mar 1 20:31:41 2004
+++ ZendEngine2/ChangeLog Tue Mar 2 20:33:18 2004
@@ -1,3 +1,38 @@
+2004-03-02 Marcus Boerger <[EMAIL PROTECTED]>
+
+ * zend_API.c
+ zend_API.h:
+ Fix zend_parse_method_parameters_ex() and make it consistant with
+ zend_parse_method_parameters().
+
+2004-03-02 Andi Gutmans <[EMAIL PROTECTED]>
+
+ * zend_compile.c:
+ - Fix leaks (although there might be still a problem here).
+
+ * zend_execute.c:
+ - Fix leak (Dmitry)
+
+ * zend_compile.c:
+ - Fix crash in:
+ <?php
+ class Foo {
+ public $attributes= array();
+
+ function export() {
+ foreach ($this->attributes as $name => $attr) {
+ }
+ }
+ }
+
+ $f= new Foo();
+ $f->export();
+ ?>
+
+ * zend_objects.c:
+ - Improve fix for protecting destructor's from exceptions.
+ - I was killing the current exception completely which was wrong.
+
2004-03-01 Andi Gutmans <[EMAIL PROTECTED]>
* zend_objects.c:
@@ -3702,7 +3737,7 @@
2003-06-10 Jani Taskinen <[EMAIL PROTECTED]>
* zend_multiply.h:
- - Missing $Id: ChangeLog,v 1.419 2004/03/02 01:31:41 changelog Exp $ tag
+ - Missing $Id: ChangeLog,v 1.420 2004/03/03 01:33:18 changelog Exp $ tag
2003-06-10 James Cox <[EMAIL PROTECTED]>
@@ -5426,7 +5461,7 @@
zend_types.h
zend_variables.c
zend_variables.h:
- - Added some missing CVS $Id: ChangeLog,v 1.419 2004/03/02 01:31:41 changelog
Exp $ tags, headers and footers.
+ - Added some missing CVS $Id: ChangeLog,v 1.420 2004/03/03 01:33:18 changelog
Exp $ tags, headers and footers.
2003-01-30 Ilia Alshanetsky <[EMAIL PROTECTED]>