diff --git a/ChangeLog b/ChangeLog index 59a3fbcf667..a0e8531692f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,39 @@ +2004-07-01 Ilia Alshanetsky + + * (PHP_4_3) + Zend/zend_constants.c: + MFHZE2: Do not use alloca() where it can be easily abused by the users. + + * ZendEngine2/zend_constants.c: + Do not use alloca() where it can be easily abused by the users. + + +2004-07-01 Zeev Suraski + + * (PHP_4_3) + main/php_ini.c: + MFH (more or less) registry-based setting for the location of php.ini + +2004-07-01 Sterling Hughes + + * ext/curl/interface.c: + fix bug wrt to CURLOPT_POSTFIELDS where if you passed it code like: + + $fields = array('foo' => 'bar'); + curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); + curl_exec($ch); + as opposed to : + + curl_setopt($ch, CURLOPT_POSTFIELDS, array('foo' => 'bar')); + + you'll get a segv or no results, depending on the mood and cycle of the + moon. + +2004-07-01 Sara Golemon + + * ext/cpdf/cpdf.c: + That hashtable should never have been an argument.... + 2004-06-30 Frank M. Kromann * NEWS diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 31b64481c32..e8faf7fd625 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,9 @@ +2004-07-01 Ilia Alshanetsky + + * zend_constants.c: + Do not use alloca() where it can be easily abused by the users. + + 2004-06-25 Wez Furlong * zend_stream.c