mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fixed Bug #70032 (make_http_soap_request calls zend_hash_get_current_key_ex(,,,NULL))
This commit is contained in:
parent
a55ca9a8d1
commit
0de0c4ace1
4
NEWS
4
NEWS
@ -5,6 +5,10 @@
|
||||
- Core:
|
||||
. Fixed bug #70012 (Exception lost with nested finally block). (Laruence)
|
||||
|
||||
- Soap:
|
||||
. Fixed bug #70032 (make_http_soap_request calls
|
||||
zend_hash_get_current_key_ex(,,,NULL). (Laruence)
|
||||
|
||||
- Standard:
|
||||
. Fixed bug #70018 (exec does not strip all whitespace). (Laruence)
|
||||
|
||||
|
@ -814,7 +814,7 @@ try_again:
|
||||
smart_str_append_const(&soap_headers, "Cookie: ");
|
||||
for (i = 0; i < n; i++) {
|
||||
data = zend_hash_get_current_data(Z_ARRVAL_P(cookies));
|
||||
zend_hash_get_current_key_ex(Z_ARRVAL_P(cookies), &key, NULL, NULL);
|
||||
zend_hash_get_current_key(Z_ARRVAL_P(cookies), &key, NULL);
|
||||
|
||||
if (Z_TYPE_P(data) == IS_ARRAY) {
|
||||
zval *value;
|
||||
|
Loading…
Reference in New Issue
Block a user