We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 438f07c commit 32e0912Copy full SHA for 32e0912
NEWS
@@ -7,6 +7,9 @@ PHP NEWS
7
inaccurate sunrise and sunset times, but other calculated times are
8
correct) (JiriJozif).
9
10
+- Standard:
11
+ . Fixed bug GH-17403 (Potential deadlock when putenv fails). (nielsdos)
12
+
13
08 May 2025, PHP 8.3.21
14
15
- Core:
ext/standard/basic_functions.c
@@ -849,6 +849,7 @@ PHP_FUNCTION(putenv)
849
#endif
850
RETURN_TRUE;
851
} else {
852
+ tsrm_env_unlock();
853
free(pe.putenv_string);
854
zend_string_release(pe.key);
855
#ifdef PHP_WIN32
0 commit comments