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 03d7318 commit 8c19efdCopy full SHA for 8c19efd
NEWS
@@ -5,6 +5,7 @@ PHP NEWS
5
- Core:
6
. Fixed bug GH-15020 (Memory leak in Zend/Optimizer/escape_analysis.c).
7
(nielsdos)
8
+ . Fixed bug GH-15023 (Memory leak in Zend/zend_ini.c). (nielsdos)
9
10
- Curl:
11
. Fixed case when curl_error returns an empty string.
Zend/zend_ini.c
@@ -243,6 +243,7 @@ ZEND_API zend_result zend_register_ini_entries_ex(const zend_ini_entry_def *ini_
243
if (p->name) {
244
zend_string_release_ex(p->name, 1);
245
}
246
+ pefree(p, true);
247
zend_unregister_ini_entries_ex(module_number, module_type);
248
return FAILURE;
249
0 commit comments