Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the PPI CPAN distribution.

Report information
The Basics
Id: 73344
Status: new
Priority: 0/
Queue: PPI

People
Owner: Nobody in particular
Requestors: andrew [...] illywhacker.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: PPI 1.215 Reference count bug?
Date: Sun, 18 Dec 2011 16:23:39 +0000
To: bug-PPI [...] rt.cpan.org
From: Andrew Solomon <andrew [...] illywhacker.net>
Hi ADAMK, ARJEN and CDOLAN If you look at the attachment op.notok and its output below, you'll see that when a document goes out of scope, some things referred to within the document go out of scope too. My question is - is this a bug, or am I misusing it? Regardless, I'd like you all to know how much I'm enjoying learning PPI - it's got me hooked! Kind regards Andrew The setup ========= * PPI 1.215 * Running under Perl v5.12.4 * Hosted on: $ uname -a Linux gym 3.0.0-12-server #20-Ubuntu SMP Fri Oct 7 16:36:30 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux The output ========= andrew@gym:~/tmp $ ./op.ok Ok andrew@gym:~/tmp $ ./op.notok Use of uninitialized value in string eq at ./op.notok line 20. Use of uninitialized value in string eq at ./op.notok line 20. NOT Ok
Download op.notok
application/octet-stream 380b

Message body not shown because it is not plain text.

Download op.ok
application/octet-stream 383b

Message body not shown because it is not plain text.

Subject: Re: [rt.cpan.org #73344] AutoReply: PPI 1.215 Reference count bug?
Date: Sun, 18 Dec 2011 16:40:59 +0000
To: bug-PPI [...] rt.cpan.org
From: Andrew Solomon <andrew [...] illywhacker.net>
I just noticed that in each of the scripts, foreach my $op (@{$ra_ops}) { should be replaced with foreach my $op (@{$raops}) { but it has no impact on the outcome. Andrew