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 79d708c commit 2b90acbCopy full SHA for 2b90acb
NEWS
@@ -30,6 +30,10 @@ PHP NEWS
30
- PCRE:
31
. Fix UAF issues with PCRE after request shutdown. (nielsdos)
32
33
+- PDO_PGSQL:
34
+ . Fixed GH-15986 (Double-free due to Pdo\Pgsql::setNoticeCallback()). (cmb,
35
+ nielsdos)
36
+
37
- Reflection:
38
. Add missing ReflectionProperty::hasHook[s]() methods. (ilutov)
39
. Add missing ReflectionProperty::isFinal() method. (ilutov)
ext/pdo_pgsql/pdo_pgsql.c
@@ -169,9 +169,7 @@ PHP_METHOD(Pdo_Pgsql, setNoticeCallback)
169
return;
170
171
cleanup:
172
- if (ZEND_FCC_INITIALIZED(fcc)) {
173
- zend_fcc_dtor(&fcc);
174
- }
+ zend_release_fcall_info_cache(&fcc);
175
RETURN_THROWS();
176
}
177
0 commit comments