Skip to content
Snippets Groups Projects
Commit d723dbc3 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

in case of early exit, frontendDB might be uninitialized

parent cd9a9c62
No related branches found
No related tags found
No related merge requests found
......@@ -3058,8 +3058,15 @@ void
config_destroy( )
{
ucdata_unload( UCDATA_ALL );
free( frontendDB->be_schemandn.bv_val );
free( frontendDB->be_schemadn.bv_val );
if ( frontendDB ) {
/* NOTE: in case of early exit, frontendDB can be NULL */
if ( frontendDB->be_schemandn.bv_val )
free( frontendDB->be_schemandn.bv_val );
if ( frontendDB->be_schemadn.bv_val )
free( frontendDB->be_schemadn.bv_val );
if ( frontendDB->be_acl )
acl_destroy( frontendDB->be_acl, NULL );
}
free( line );
if ( slapd_args_file )
free ( slapd_args_file );
......@@ -3067,7 +3074,6 @@ config_destroy( )
free ( slapd_pid_file );
if ( default_passwd_hash )
ldap_charray_free( default_passwd_hash );
acl_destroy( frontendDB->be_acl, NULL );
}
static int
......
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