mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
ext/ldap: Fix FCC is initialized condition
This commit is contained in:
parent
adcd3ad46b
commit
cc3a729995
1 changed files with 1 additions and 1 deletions
|
@ -3755,7 +3755,7 @@ PHP_FUNCTION(ldap_set_rebind_proc)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Free old FCC */
|
/* 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);
|
zend_fcc_dtor(&ld->rebind_proc_fcc);
|
||||||
}
|
}
|
||||||
if (ZEND_FCC_INITIALIZED(fcc)) {
|
if (ZEND_FCC_INITIALIZED(fcc)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue