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


in reply to Re: Debugging child pid 4577 exit signal Segmentation fault (11)
in thread Debugging child pid 4577 exit signal Segmentation fault (11)

The final work around is putting the $cgi in the self.
sub new { my ($class) = @_; my $self = {cgi => CGI->new}; bless $self, $class; return $self; }
  • Comment on Re^2: Debugging child pid 4577 exit signal Segmentation fault (11)
  • Download Code

Replies are listed 'Best First'.
Re^3: Debugging child pid 4577 exit signal Segmentation fault (11)
by keenlearner (Acolyte) on Oct 01, 2012 at 07:52 UTC
    I still wonder why, I have been using the our $cgi = CGI->new for many modules, but only this particular module is having this issue. Any input will be great ?