|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-03-28 22:22 UTC] tony2001@php.net
[2006-03-29 17:19 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ __set() seems to leak memory when extending internal classes (DOMElement for instance) Reproduce code: --------------- <?php class foo extends DOMElement { private $a = array(); public function __construct() { } public function __set($k, $v) { $this->a[$k] = $v; } } $obj = new foo; $obj->foo = "bar"; Actual result: -------------- [Tue Mar 28 21:45:10 2006] Script: 'element.php' /usr/src/php51/Zend/zend_object_handlers.c(292) : Freeing 0x08320364 (5 bytes), script=element.php /usr/src/php51/Zend/zend_hash.c(314) : Actual location (location was relayed) [Tue Mar 28 21:45:10 2006] Script: 'element.php' /usr/src/php51/Zend/zend_hash.c(307) : Freeing 0x08322B24 (39 bytes), script=element.php [Tue Mar 28 21:45:10 2006] Script: 'element.php' /usr/src/php51/Zend/zend_object_handlers.c(284) : Freeing 0x08322AA4 (32 bytes), script=element.php /usr/src/php51/Zend/zend_hash.c(169) : Actual location (location was relayed) [Tue Mar 28 21:45:10 2006] Script: 'element.php' /usr/src/php51/Zend/zend_object_handlers.c(283) : Freeing 0x08322A24 (44 bytes), script=element.php === Total 4 memory leaks detected ===