mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
Fixed bug #38535 (memory corruption in pdo_pgsql driver on error retrieval
inside a failed query executed via query() method).
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
PHP NEWS
|
||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||
?? Sep 2006, PHP 5.2.0
|
||||
- Fixed bug #38535 (memory corruption in pdo_pgsql driver on error retrieval
|
||||
inside a failed query executed via query() method). (Ilia)
|
||||
- Fixed bug #38524 (strptime() does not initialize the internal date storage
|
||||
structure). (Ilia)
|
||||
- Fixed PECL bug #8112 (OCI8 persistent connections misbehave when Apache
|
||||
process times out). (Tony)
|
||||
|
||||
|
||||
17 Aug 2006, PHP 5.2.0RC2
|
||||
- Increased default memory limit to 16 megabytes to accommodate for a more
|
||||
accurate memory utilization measurement.
|
||||
|
||||
@@ -1053,9 +1053,6 @@ static PHP_METHOD(PDO, query)
|
||||
zval_dtor(return_value);
|
||||
}
|
||||
|
||||
/* kill the object handle for the stmt here */
|
||||
zval_dtor(return_value);
|
||||
|
||||
RETURN_FALSE;
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
Reference in New Issue
Block a user