mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 05:30:07 -05:00
don't test a NULL BackendDB * (ITS#6385)
This commit is contained in:
parent
1ec443df53
commit
272abc5561
1 changed files with 1 additions and 1 deletions
|
|
@ -3718,7 +3718,7 @@ syncinfo_free( syncinfo_t *sie, int free_all )
|
|||
if ( sie->si_logbase.bv_val ) {
|
||||
ch_free( sie->si_logbase.bv_val );
|
||||
}
|
||||
if ( SLAP_SYNC_SUBENTRY( sie->si_be )) {
|
||||
if ( sie->si_be && SLAP_SYNC_SUBENTRY( sie->si_be )) {
|
||||
ch_free( sie->si_contextdn.bv_val );
|
||||
}
|
||||
if ( sie->si_attrs ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue