Subject: | Crash on destruction of Apache::AxKit::CharsetConv object |
{
my $encoding = <param:encoding />;
my $iconv = Apache::AxKit::CharsetConv->new($encoding,"UTF-8");
$query = $iconv->convert($query);
}
On exit from local scope you will have apache child crash and zero length request in browser.
In file CharsetConv.xs, line 197 it's necessary to change
free(self);
on
Safefree(self);