ID: 31177
Updated by: [EMAIL PROTECTED]
Reported By: guth at fiifo dot u-psud dot fr
-Status: Open
+Status: Verified
-Bug Type: Performance problem
+Bug Type: Zend Engine 2 problem
-Operating System:
+Operating System: *
-PHP Version: 5.0.3
+PHP Version: 5CVS (2005-01-01)
New Comment:
/usr/src/web/php/php5/Zend/zend_vm_execute.h(350) : Freeing 0x0880A664
(16 bytes)
Previous Comments:
------------------------------------------------------------------------
[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