Subject: | Introspector.pm - $type eq "{" BUG |
Date: | Tue, 30 Oct 2007 13:00:59 +0100 |
To: | bug-Net-DBus [...] rt.cpan.org |
From: | "Ing. Michal Zahor" <mzahor [...] dtech.sk> |
Hi,
I've discovered bug in the introspector.pm
Error raised after connect_to_signal(...)
ERROR: Uninitialised value string at ne /..../Introspector.pm at 695
Debian LENNY distribution
from line695
} elsif ($type eq "{" ) {
.....
}
I've replaced with and it's working
} elsif ($type eq "{" ) {
my $new = ["dict"];
push @{$current}, $new;
push @cont,$current;
$current = $new;
}