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;