Skip Menu |

This queue is for tickets about the HTTP-Daemon CPAN distribution.

Report information
The Basics
Id: 82816
Status: resolved
Priority: 0/
Queue: HTTP-Daemon

People
Owner: Nobody in particular
Requestors: bogenstaetter [...] gmx.de
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 6.01
Fixed in: (no value)



Subject: twice: Use of uninitialized value $port
When using it together with SOAP::Transport::HTTP::Daemon::ReapForkOnAccept, a warning occurs: Use of uninitialized value $port in numeric ne (!=) at C:/Perl/lib/HTTP/Daemon.pm line 51. Use of uninitialized value $port in concatenation (.) or string at C:/Perl/lib/HTTP/Daemon.pm line 51. I had already a look into it and would suggest a simple fix in line 51: $url .= ":$port" if (defined($port) and $port != $self->_default_port); (added: "defined($port) and" as well as brackets around the condition). Thanks for your work! Marcus