Subject: | bug in File::Path module |
Date: | Wed, 21 Sep 2011 00:39:35 +0200 |
To: | bug-File-Path [...] rt.cpan.org |
From: | "Marcin Sacha" <marcin [...] sacha.pl> |
Hi,
I've discovered a bug in a line #80 in file File/Path.pm. There's an assignment of an array
reference to a scalar reference variable:
${$arg->{error}} = []
I fix it with:
@{$arg->{error}} = []
but I'm not sure if this is consistent with the rest of the code. Could you confirm? And when can
I expect a path for this bug?
File ver: 2.04
Perl ver: 5.10.0
System: Linux 2.6.26-2-686
Regards,
MJS