Skip to content
Snippets Groups Projects
Commit ce09dfcb authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

don't risk using uninitialized vars

parent 92e217e1
No related branches found
No related tags found
No related merge requests found
......@@ -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 ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment