X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http_header.c;h=dfcba3c4433851983e5802e2dfc36cf2b052fec7;hb=ac85eae11f885c31e1883b3ee8b8a2443db80d86;hp=709b85bb3cea22f528bd3b13bb2adaeaa77ec16e;hpb=03f11ce599fa5a89148d588caf6ccec7f939e9d4;p=m6w6%2Fext-http diff --git a/php_http_header.c b/php_http_header.c index 709b85b..dfcba3c 100644 --- a/php_http_header.c +++ b/php_http_header.c @@ -72,12 +72,12 @@ void php_http_header_to_callback(HashTable *headers, zend_bool crlf, php_http_pa } } ZEND_HASH_FOREACH_END(); - } - } else { - zend_string *zs = php_http_header_value_to_string(header); + } else { + zend_string *zs = php_http_header_value_to_string(header); - cb(cb_arg, crlf ? "%s: %s" PHP_HTTP_CRLF : "%s: %s", key.key->val, zs->val); - zend_string_release(zs); + cb(cb_arg, crlf ? "%s: %s" PHP_HTTP_CRLF : "%s: %s", key.key->val, zs->val); + zend_string_release(zs); + } } } ZEND_HASH_FOREACH_END(); @@ -187,7 +187,7 @@ PHP_METHOD(HttpHeader, unserialize) zend_ulong idx; zend_hash_internal_pointer_reset(&ht); - switch (zend_hash_get_current_key_ex(&ht, &key, &idx, NULL)) { + switch (zend_hash_get_current_key(&ht, &key, &idx)) { case HASH_KEY_IS_STRING: zend_update_property_str(php_http_header_class_entry, getThis(), ZEND_STRL("name"), key); break;