]> granicus.if.org Git - php/commitdiff
CS fix and comments with bug ID
authorStanislav Malyshev <stas@php.net>
Wed, 13 Jul 2016 04:35:02 +0000 (21:35 -0700)
committerStanislav Malyshev <stas@php.net>
Wed, 13 Jul 2016 04:35:02 +0000 (21:35 -0700)
main/SAPI.c
main/php_variables.c

index 8a56c6d61ca9d34c76c32a1267457af8097958a2..223c51021bee8df546986ebc3913ec93d7e772dc 100644 (file)
@@ -1012,7 +1012,7 @@ SAPI_API struct stat *sapi_get_stat(TSRMLS_D)
 SAPI_API char *sapi_getenv(char *name, size_t name_len TSRMLS_DC)
 {
        if (!strncasecmp(name, "HTTP_PROXY", name_len)) {
-               /* Ugly fix for HTTP_PROXY issue */
+               /* Ugly fix for HTTP_PROXY issue, see bug #72573 */
                return NULL;
        }
        if (sapi_module.getenv) {
index bbe57d39556d6e03d5c3c25b11b1ee351ef85640..5977a5ed97369c8a144ff3376fada4227de666a6 100644 (file)
@@ -722,8 +722,9 @@ static zend_bool php_auto_globals_create_files(const char *name, uint name_len T
        return 0; /* don't rearm */
 }
 
-/* Upgly hack to fix HTTP_PROXY issue */
-static void check_http_proxy(HashTable *var_table) {
+/* Upgly hack to fix HTTP_PROXY issue, see bug #72573 */
+static void check_http_proxy(HashTable *var_table)
+{
        if (zend_hash_exists(var_table, "HTTP_PROXY", sizeof("HTTP_PROXY"))) {
                char *local_proxy = getenv("HTTP_PROXY");