Skip Menu |

This queue is for tickets about the RPC-XML CPAN distribution.

Report information
The Basics
Id: 67694
Status: resolved
Priority: 0/
Queue: RPC-XML

People
Owner: rjray [...] blackperl.com
Requestors: CHOLET [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: (no value)
Fixed in: 0.75



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.