Cine has asked for the wisdom of the Perl Monks concerning the following question:

When running one of my script with:
perl -d:DProf checkpriser.pl
I get:
Can't report tag lists yet ...propagated at checkpriser.pl line 99.
line 99 is a check to see if a HTTP::Request from LWP went OK. that is
$res = $ua->request($req); #line 98 die if $res->is_error; #line 99
If I comment out line 99 I get a segfault.

Anyone have any idea what is going on?

PS. The script works just fine without the profiler running.
Just needed to make it go faster... Got 25% from rewriting a poor regex.

T I M T O W T D I

Replies are listed 'Best First'.
Re: DProf error
by perrin (Chancellor) on Oct 05, 2001 at 06:16 UTC
    It looks to me like the $ua->request() did not go okay. I don't know what this error means, but I would suggest you start debugging this by grep'ing the LWP source for that message.