Skip Menu |

This queue is for tickets about the Module-Pluggable CPAN distribution.

Report information
The Basics
Id: 67890
Status: resolved
Priority: 0/
Queue: Module-Pluggable

People
Owner: Nobody in particular
Requestors: KARASIK [...] cpan.org
Cc:
AdminCc:

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



Use of uninitialized value $1 in split at /usr/local/lib/perl5/5.12.1/Module/Pluggable/Object.pm line 196, <PKGFILE> line 1. The input that triggers the failure is: "package TopLevel;" fix: --- @pkg_dirs = split /::/, $1; +++ @pkg_dirs = split /::/, $1 if defined $1;
On Mon May 02 04:59:08 2011, KARASIK wrote: Show quoted text
> Use of uninitialized value $1 in split at > /usr/local/lib/perl5/5.12.1/Module/Pluggable/Object.pm line 196, > <PKGFILE> line 1. > > The input that triggers the failure is: "package TopLevel;" > > fix: > > --- @pkg_dirs = split /::/, $1; > +++ @pkg_dirs = split /::/, $1 if defined $1;
Fixed in commit e7f64a0453c2f4a8f3b0e4a5e43d366b8833585d Thanks!