ID: 31177
Updated by: [EMAIL PROTECTED]
Reported By: guth at fiifo dot u-psud dot fr
-Status: Assigned
+Status: Closed
Bug Type: Scripting Engine problem
Operating System: *
PHP Version: 5CVS-2005-06-23
Assigned To: dmitry
New Comment:
Fixed in CVS HEAD and PHP_5_1.
Previous Comments:
------------------------------------------------------------------------
[2005-03-29 00:49:16] [EMAIL PROTECTED]
/usr/src/php/php5/Zend/zend_vm_execute.h(370) : Freeing 0x08FBAECC (16
bytes), script=t.php
=== Total 1 memory leaks detected ===
------------------------------------------------------------------------
[2005-01-07 18:56:57] [EMAIL PROTECTED]
/usr/src/web/php/php5/Zend/zend_vm_execute.h(350) : Freeing 0x0880A664
(16 bytes)
------------------------------------------------------------------------
[2004-12-18 10:41:02] guth at fiifo dot u-psud dot fr
Description:
------------
The following code produces a memory leak :
/usr/src/php-5.0.3RC1/Zend/zend_execute.c(3255) : Freeing 0x0816FB6C
(16 bytes), script=/www/test3.php
=== Total 1 memory leaks detected ===
Reproduce code:
---------------
<?php
class DbGow {
public function query() {
throw new Exception;
}
public function select() {
return new DbGowRecordSet($this->query());
}
}
class DbGowRecordSet {
public function __construct($resource) {
}
}
$db = new DbGow;
try {
$rs = $db->select();
}
catch(Exception $e) {
}
?>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=31177&edit=1