]> git.sur5r.net Git - openldap/commitdiff
Free default_passwd_hash on cleanup
authorHoward Chu <hyc@openldap.org>
Sun, 16 Feb 2003 06:13:34 +0000 (06:13 +0000)
committerHoward Chu <hyc@openldap.org>
Sun, 16 Feb 2003 06:13:34 +0000 (06:13 +0000)
servers/slapd/config.c

index ac10f94a89844d4b5502d963c717739bee08bb58..081fe2a58e5f0c8641728f87f993f766627cee99 100644 (file)
@@ -2544,5 +2544,7 @@ config_destroy( )
                free ( slapd_args_file );
        if ( slapd_pid_file )
                free ( slapd_pid_file );
+       if ( default_passwd_hash )
+               free( default_passwd_hash );
        acl_destroy( global_acl, NULL );
 }