sxe, leaks while reading attributes prop without assign it to a var

php.internals

Pierre-Alain Joye

22 years ago
Hello, Maybe this usage is wrong but it should not leak: <?php $xml =<<<EOF <people type="foo"> <person name="Joe"> Text1 </person> </people> EOF; $sxe = simplexml_load_string($xml); $sxe->attributes; ?> # php5 sxe_leak.php /home/paj/cvs/builds/php5/ext/simplexml/simplexml.c(187) : Freeing 0x408DE780 (16 bytes), script=sxe_leak.php=== Total 1 memory leaks detected === $foo = $sxe->attributes; does not leak. hth pierre

Andi Gutmans

22 years ago
Fix being submitted as I type. Thanks for the good reproducing script. Andi At 01:29 PM 2/10/2004 +0100, Pierre-Alain Joye wrote: