From: Anatol Belski Date: Mon, 14 Jul 2014 18:27:59 +0000 (+0200) Subject: fix C89 compat X-Git-Tag: PRE_PHPNG_MERGE~82^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=236365a016df0f1976b0f9d063340231eb1fb4c8;p=php fix C89 compat --- diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c index 87d0bd64e3..1c4b17afb1 100644 --- a/ext/standard/http_fopen_wrapper.c +++ b/ext/standard/http_fopen_wrapper.c @@ -224,6 +224,8 @@ php_stream *php_stream_url_wrap_http_ex(php_stream_wrapper *wrapper, efree(transport_string); if (stream && use_proxy && use_ssl) { + smart_str header = {0}; + /* Set peer_name or name verification will try to use the proxy server name */ if (!context || php_stream_context_get_option(context, "ssl", "peer_name", &tmpzval) == FAILURE) { MAKE_STD_ZVAL(ssl_proxy_peer_name); @@ -231,8 +233,6 @@ php_stream *php_stream_url_wrap_http_ex(php_stream_wrapper *wrapper, php_stream_context_set_option(stream->context, "ssl", "peer_name", ssl_proxy_peer_name); } - smart_str header = {0}; - smart_str_appendl(&header, "CONNECT ", sizeof("CONNECT ")-1); smart_str_appends(&header, resource->host); smart_str_appendc(&header, ':');