diff options
| author | Anatol Belski <ab@php.net> | 2013-05-13 14:26:50 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2013-05-13 14:26:50 +0200 |
| commit | e191cb63ba9a32c527263b3913e2f4e5d6dd8aa3 (patch) | |
| tree | 2767e4890a52566f4ae42fac6b8f77abf2040d84 /ext | |
| parent | e44849b0f466212f8101e165ce56cf73e8a5bc4c (diff) | |
| parent | 156576fcced43efc558002d504732271f6cc1fe1 (diff) | |
| download | php-git-e191cb63ba9a32c527263b3913e2f4e5d6dd8aa3.tar.gz | |
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4:
fix heap overflow warnings on win x64 debug crt
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/soap/soap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c index cabe5c068b..ba9455e134 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -3920,7 +3920,7 @@ static xmlDocPtr serialize_response_call(sdlFunctionPtr function, char *function if (version == SOAP_1_1) { if (zend_hash_find(prop, "faultcode", sizeof("faultcode"), (void**)&tmp) == SUCCESS) { - int new_len; + size_t new_len; xmlNodePtr node = xmlNewNode(NULL, BAD_CAST("faultcode")); char *str = php_escape_html_entities((unsigned char*)Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp), &new_len, 0, 0, NULL TSRMLS_CC); xmlAddChild(param, node); @@ -3930,7 +3930,7 @@ static xmlDocPtr serialize_response_call(sdlFunctionPtr function, char *function xmlNodeSetContent(node, code); xmlFree(code); } else { - xmlNodeSetContentLen(node, BAD_CAST(str), new_len); + xmlNodeSetContentLen(node, BAD_CAST(str), (int)new_len); } efree(str); } @@ -3945,7 +3945,7 @@ static xmlDocPtr serialize_response_call(sdlFunctionPtr function, char *function detail_name = "detail"; } else { if (zend_hash_find(prop, "faultcode", sizeof("faultcode"), (void**)&tmp) == SUCCESS) { - int new_len; + size_t new_len; xmlNodePtr node = xmlNewChild(param, ns, BAD_CAST("Code"), NULL); char *str = php_escape_html_entities((unsigned char*)Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp), &new_len, 0, 0, NULL TSRMLS_CC); node = xmlNewChild(node, ns, BAD_CAST("Value"), NULL); @@ -3955,7 +3955,7 @@ static xmlDocPtr serialize_response_call(sdlFunctionPtr function, char *function xmlNodeSetContent(node, code); xmlFree(code); } else { - xmlNodeSetContentLen(node, BAD_CAST(str), new_len); + xmlNodeSetContentLen(node, BAD_CAST(str), (int)new_len); } efree(str); } |
