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.
2 parents 3036101 + 32e0912 commit c6ed104Copy full SHA for c6ed104
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
24 Apr 2025, PHP 8.4.7
14
15
- Core:
ext/standard/basic_functions.c
@@ -827,6 +827,7 @@ PHP_FUNCTION(putenv)
827
#endif
828
RETURN_TRUE;
829
} else {
830
+ tsrm_env_unlock();
831
free(pe.putenv_string);
832
zend_string_release(pe.key);
833
#ifdef PHP_WIN32
0 commit comments