hdb-mitdb: correct missing equals in initialization

This commit is contained in:
Daria Phoebe Brashear
2017-10-19 14:06:12 -05:00
committed by Jeffrey Altman
parent b860b70ada
commit 3bcc031939

View File

@@ -1116,7 +1116,7 @@ krb5_error_code
hdb_mitdb_create(krb5_context context, HDB **db,
const char *filename)
{
MITDB **mdb (MITDB **)db;
MITDB **mdb = (MITDB **)db;
*mdb = calloc(1, sizeof(**mdb));
if (*mdb == NULL) {
krb5_set_error_message(context, ENOMEM, "malloc: out of memory");