Skip Menu |

This queue is for tickets about the Mail-DKIM CPAN distribution.

Report information
The Basics
Id: 66320
Status: resolved
Priority: 0/
Queue: Mail-DKIM

People
Owner: jason [...] long.name
Requestors: hsk [...] fli-leibniz.de
Cc:
AdminCc:

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



Subject: perl-5.12.3 complains on "Use of uninitialized value"
probably just a cosmetic change, but "make test" running under perl 5.12.3 gives "Use of uninitialized value" warnings proposed fix: --- Mail-DKIM-0.39/lib/Mail/DKIM/PublicKey.pm Sat Jan 23 18:44:52 2010 +++ Mail-DKIM-0.39a/lib/Mail/DKIM/PublicKey.pm Wed Mar 2 09:55:46 2011 @@ -83,6 +83,7 @@ my %prms = @_; my ($query_type, $query_options) = split(/\//, $prms{Protocol}, 2); + $query_type = "" if !defined $query_type; if (lc($query_type) ne "dns") { die "unknown query type '$query_type'\n";
On Wed Mar 02 04:49:56 2011, hsk@fli-leibniz.de wrote: Show quoted text
> probably just a cosmetic change, but "make test" running under perl > 5.12.3 gives "Use of uninitialized value" warnings >
Thanks for the report. It is now fixed in my personal repository, so the fix will be included in the next release. Jason