Edit report at https://bugs.php.net/bug.php?id=62210&edit=1
ID: 62210 Updated by: fel...@php.net Reported by: ni...@php.net Summary: Exceptions can leak temporary variables -Status: Open +Status: Assigned Type: Bug Package: Scripting Engine problem PHP Version: Irrelevant -Assigned To: +Assigned To: dmitry Block user comment: N Private report: N Previous Comments: ------------------------------------------------------------------------ [2012-06-02 00:46:39] ni...@php.net Description: ------------ The script <?php function throwException() { throw new Exception } function doSomething() { [] + throwException(); } try { doSomething(); } catch (Exception $e) { } leaks /home/nikic/dev/php-src/Zend/zend_vm_execute.h(25625) : Freeing 0xB77ABA44 (44 bytes), script=- /home/nikic/dev/php-src/Zend/zend_API.c(982) : Actual location (location was relayed) === Total 1 memory leaks detected === This generally always happens whenever an exception is thrown while evaluation an expression which contains (non-scalar) temporary variables. In the above case the array hash table is leaked. The reason is that the FREE opcode for the temporary variable is never executed due to the exception. Exceptions only free temporary loop variables. ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=62210&edit=1