Skip Menu |

This queue is for tickets about the HTML-TableExtract CPAN distribution.

Report information
The Basics
Id: 87159
Status: new
Priority: 0/
Queue: HTML-TableExtract

People
Owner: Nobody in particular
Requestors: paul.g.webster [...] googlemail.com
Cc:
AdminCc:

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



Subject: Use of uninitialized value in subroutine entry at /usr/local/lib/perl5/site_perl/5.16/HTML/TableExtract.pm line 1244. (Code Fix)
Date: Mon, 22 Jul 2013 16:32:27 +0100
To: bug-HTML-TableExtract [...] rt.cpan.org
From: Paul Webster <paul.g.webster [...] googlemail.com>
Simply change from: sub strip { my $self = shift; $self->parse(shift); $self->eof; $self->{_htes_tidbit}; } To: sub strip { my $self = shift; $self->parse(shift) if ($_[0]); $self->eof; $self->{_htes_tidbit}; }