From: Date: Sat, 20 Jun 2009 01:33:11 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-5.4.0alpha1~191^2~3281 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dbebf39ff3ead724aeda550d2b79ba6e22885285;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index dfdcf2de87..c153b94876 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +2009-06-19 Kalle Sommer Nielsen + + * ext/gd/gd.c: + Fix memleak + +2009-06-19 Scott MacVicar + + * (PHP_5_3) + ZendEngine2/zend_object_handlers.c + ZendEngine2/tests/bug48215_2.phpt + ZendEngine2/tests/bug48215_2.phpt: + Make the check case sensitive, and since we can only have a constructor + that matches the class name or is __construct + its probably safe to just check for __. This means we can skip lowering + the function_name, which is hard to be binary + safe sine we don't store the length. + + If we just did a zend_hash_exists lookup we'd be fine since its stored + lowercased already :) + 2009-06-18 andy wharmby * ext/standard/tests/dir/readdir_variation7.phpt diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 22e691b20b..acb87f0555 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,18 @@ +2009-06-19 Scott MacVicar + + * (PHP_5_3) + zend_object_handlers.c + tests/bug48215_2.phpt + tests/bug48215_2.phpt: + Make the check case sensitive, and since we can only have a constructor + that matches the class name or is __construct + its probably safe to just check for __. This means we can skip lowering + the function_name, which is hard to be binary + safe sine we don't store the length. + + If we just did a zend_hash_exists lookup we'd be fine since its stored + lowercased already :) + 2009-06-18 Scott MacVicar * (PHP_5_3)