Subject: | Warnings - Use of uninitialized value $ns in Lite.pm line 3396 |
Line 3396
my ($ns,$prefix) = SOAP::Utils::splitqname($key);
$self->{'_stub'} .= ' $self->serializer->register_ns("'.$namespaces->{$key}.'","'.$prefix.'");'."\n"
if ($ns eq "xmlns");
$ns could be undef, and the comparison line should check $ns for defined.