We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83dda66 commit 08b6fe9Copy full SHA for 08b6fe9
NEWS
@@ -98,6 +98,8 @@ PHP NEWS
98
- Standard:
99
. Fixed bug #65272 (flock() out parameter not set correctly in windows).
100
(Daniel Lowrey)
101
+ . Fixed bug #69033 (Request may get env. variables from previous requests
102
+ if PHP works as FastCGI). (Anatol)
103
104
- Streams:
105
. Fixed bug which caused call after final close on streams filter. (Bob)
ext/standard/basic_functions.c
@@ -3433,6 +3433,9 @@ static void php_putenv_destructor(putenv_entry *pe) /* {{{ */
3433
unsetenv(pe->key);
3434
# elif defined(PHP_WIN32)
3435
SetEnvironmentVariable(pe->key, NULL);
3436
+# ifndef ZTS
3437
+ _putenv_s(pe->key, "");
3438
+# endif
3439
# else
3440
char **env;
3441
0 commit comments