http://www.perlmonks.org?node_id=219640


in reply to Re: Mysterious script crash in win2k and ActivePerl
in thread Mysterious script crash in win2k and ActivePerl

I'll check on strict and warnings -- I think they're on. The code is complicated, but I posted the main loop at http://www.perlmonks.org/index.pl?node_id=217848

I did find one bug and corrected it this way:

while($buf=~/(.*\n)/g) { print DEBUG "doing <$1>\n"; ${$Con{$fh}}{getline}($fh,$1); last unless $Con{$fh}; # it's possible that the connection can b +e deleted while there's still something in the buffer } if($Con{$fh}) { ($this->{_})=$buf=~/([^\n\r]*)$/s; if(length($this->{_}) > 10000) { ${$Con{$fh}}{getline}($fh,$this->{_}); ($this->{_})=''; } }
The problem was that the connection was closed while there was still a line in the buffer. The if($Con{$fh}) tests for that condition.

john