Subject: | Use of uninitialized value in subroutine entry at /usr/lib/perl5/site_perl/5.8.8/HTML/TreeBuilder.pm line 104. |
Hi,
Using HTML::TreeBuilder $VERSION = '4.1' I randomly get:
Use of uninitialized value in subroutine entry at
/usr/lib/perl5/site_perl/5.8.8/HTML/TreeBuilder.pm line 104.
I'm using this from HTML::TreeBuilder::XPath.
This is inside the new_form_content() sub. Starting from line 99:
099 foreach my $whunk (@_) {
100 if ( ref($whunk) eq 'SCALAR' ) {
101 $new->parse($$whunk);
102 }
103 else {
104 $new->parse($whunk);
105 }
106 last if $new->{'_stunted'}; # might as well check that.
107 }
Hope this helps.
James
james@rcpt.to