Hi all, I've a strange problem with modperl (mpm_worker), this causes segfault:
my $cgi=CGI->new(); display(); sub display{ my $t=HTML::Template->new(...); print $cgi->header(); print $t->ouput(); } But this work : my $cgi=CGI->new(); display($cgi); sub display{ my $cgi=shift; my $t=HTML::Template->new(...); print $cgi->header(); print $t->ouput(); } Any idea ?