Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.5.2
-
Fix Version/s: 1.9.2
-
Component/s: Zend_XmlRpc_Client
-
Labels:None
Description
Hi,
There is an issue with Zend_XmlRpc_Value_Integer there :
public function __construct($value) { $this->_type = self::XMLRPC_TYPE_INTEGER; $this->_value = (int)$value; // Make sure this value is integer }
If we receive a value bigger than 2 147 483 647 then the value is truncated.
Please evaluate and fix/categorize as necessary.