1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

ext/ldap: Fix FCC is initialized condition

This commit is contained in:
Gina Peter Banyard
2025-01-09 10:28:41 +00:00
parent adcd3ad46b
commit cc3a729995

View File

@@ -3755,7 +3755,7 @@ PHP_FUNCTION(ldap_set_rebind_proc)
}
/* Free old FCC */
if (!ZEND_FCC_INITIALIZED(ld->rebind_proc_fcc)) {
if (ZEND_FCC_INITIALIZED(ld->rebind_proc_fcc)) {
zend_fcc_dtor(&ld->rebind_proc_fcc);
}
if (ZEND_FCC_INITIALIZED(fcc)) {