Subject: | Apache::RPC::Server infinite loop |
Use of uninitialized value $content in length at
/usr/local/lib/perl5/site_perl/5.10.1//Apache/RPC/Server.pm line 161.
This happens in this code:
while ($length)
{
$r->read($content, ($length < 2048) ? $length : 2048);
$length -= length $content;
Client seems to be closing their connection which cause $content to be undefined. The code
then enters an infinite loop.