mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
don't risk using uninitialized vars
This commit is contained in:
parent
7be50e74ec
commit
1447d7fe17
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ over_db_destroy(
|
|||
slap_overinfo *oi = be->bd_info->bi_private;
|
||||
slap_overinst *on = oi->oi_list, *next;
|
||||
BackendInfo *bi_orig = be->bd_info;
|
||||
int rc;
|
||||
int rc = 0;
|
||||
|
||||
be->bd_info = oi->oi_orig;
|
||||
if ( be->bd_info->bi_db_destroy ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue