mirror of
https://github.com/php/php-src.git
synced 2026-04-24 16:38:25 +02:00
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5: Fix bug #69033 (Request may get env. variables from previous requests if PHP works as FastCGI)
This commit is contained in:
@@ -3404,6 +3404,9 @@ static void php_putenv_destructor(putenv_entry *pe) /* {{{ */
|
||||
unsetenv(pe->key);
|
||||
# elif defined(PHP_WIN32)
|
||||
SetEnvironmentVariable(pe->key, NULL);
|
||||
# ifndef ZTS
|
||||
_putenv_s(pe->key, "");
|
||||
# endif
|
||||
# else
|
||||
char **env;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user