Skip Menu |

This queue is for tickets about the Dialog CPAN distribution.

Report information
The Basics
Id: 1944
Status: new
Priority: 0/
Queue: Dialog

People
Owner: Nobody in particular
Requestors: erwin [...] lansing.dk
Cc:
AdminCc:

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



Subject: error in initialization of %objlist in new()
Reference found where even-sized list expected at /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/Dialog.pm line 91. The error is hidden by the initial screen of dialog, so one needs to redirect STDERR to another place. See attached patch for fix. perl 5.005_03 of FreeBSD 4.7, Dialog version 0.03 Cheers, -erwin
--- /tmp/Dialog.pm Wed Jan 15 11:41:19 2003 +++ /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/Dialog.pm Tue Jan 14 15:50:13 2003 @@ -88,7 +88,7 @@ no strict "subs"; sub new { - %objlist = {}; + %objlist = (); @objlist = (); $current = 0;