Skip to content

Commit cc3a729

Browse files
committed
ext/ldap: Fix FCC is initialized condition
1 parent adcd3ad commit cc3a729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/ldap/ldap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3755,7 +3755,7 @@ PHP_FUNCTION(ldap_set_rebind_proc)
37553755
}
37563756

37573757
/* Free old FCC */
3758-
if (!ZEND_FCC_INITIALIZED(ld->rebind_proc_fcc)) {
3758+
if (ZEND_FCC_INITIALIZED(ld->rebind_proc_fcc)) {
37593759
zend_fcc_dtor(&ld->rebind_proc_fcc);
37603760
}
37613761
if (ZEND_FCC_INITIALIZED(fcc)) {

0 commit comments

Comments
 (0)