Subject: | Bug in Win32::Exe 0.14, set_version_info |
Date: | Fri, 27 Apr 2012 15:17:25 +0200 |
To: | bug-Win32-Exe [...] rt.cpan.org |
From: | Torsten.Werner [...] assyst.de |
Hi,
there is a small problem in Win32::Exe 0.14
In function set_version_info, line 514 is the following statement:
if(ref($inputpairs eq 'HASH')) {
I think it should be
if(ref($inputpairs) eq 'HASH') {
Some lines below:
my @info = ($self->default_info, @$inputpairs);
$inputpairs is a hash reference. should be
my @info = ($self->default_info, @$inputref);
It works for me with the change.
Bye
Torsten