Subject: | immediate sub-reference not reported |
Date: | Fri, 30 Jan 2009 07:09:03 +1100 |
To: | bug-Test-Weaken [...] rt.cpan.org |
From: | Kevin Ryde <user42 [...] zip.com.au> |
This is the bit I mentioned in passing in the other ticket.
With 1.002 the program below shows nothing leaked from the first
example,
$weaken = [
0,
2,
[],
[]
];
where I hoped (if I understand what's supposed to happen) that the $leak
array [ 'abc' ] would be reported as an unfreed component of $obj.
The second shows a [ 'ghi' ] sub-component of $leak reported, but not
$leak itself,
$weaken = [
0,
3,
[],
[
[
'ghi'
]
]
];
Message body is not shown because sender requested not to inline it.