Skip Menu |

This queue is for tickets about the SOAP-Lite CPAN distribution.

Report information
The Basics
Id: 84724
Status: resolved
Priority: 0/
Queue: SOAP-Lite

People
Owner: Nobody in particular
Requestors: PHRED [...] cpan.org
Cc:
AdminCc:

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



Line 1993 in SOAP/Lite.pm throws an error if it has a valid number, but the number is less than 10. Stack depths greater than 10 have been seen in our WWW::Salesforce calls. Original code: 1993 die "Incorrect parameter" unless $itself =~/^\d$/; Change which resolves our issue 1993 die "Incorrect parameter" unless $itself =~/^\d+$/;
Resolved in 0.716