From ac85eae11f885c31e1883b3ee8b8a2443db80d86 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Sun, 18 Jan 2015 11:46:11 +0100 Subject: [PATCH] fix headers to string generation --- php_http_header.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/php_http_header.c b/php_http_header.c index 0ae381e..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(); -- 2.30.2