(DB_destroy): clear master key
(DB_open): check malloc git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5760 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -53,9 +53,12 @@ DB_close(krb5_context context, HDB *db)
|
||||
static krb5_error_code
|
||||
DB_destroy(krb5_context context, HDB *db)
|
||||
{
|
||||
krb5_error_code ret;
|
||||
|
||||
ret = hdb_clear_master_key (context, db);
|
||||
free(db->name);
|
||||
free(db);
|
||||
return 0;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static krb5_error_code
|
||||
@@ -219,6 +222,8 @@ DB_open(krb5_context context, HDB *db, int flags, mode_t mode)
|
||||
krb5_error_code ret;
|
||||
|
||||
asprintf(&fn, "%s.db", db->name);
|
||||
if (fn == NULL)
|
||||
return ENOMEM;
|
||||
db->db = dbopen(fn, flags, mode, DB_BTREE, NULL);
|
||||
free(fn);
|
||||
/* try to open without .db extension */
|
||||
|
Reference in New Issue
Block a user