From 3bcc031939d4f8cf600839d1e92b252c250d4d79 Mon Sep 17 00:00:00 2001 From: Daria Phoebe Brashear Date: Thu, 19 Oct 2017 14:06:12 -0500 Subject: [PATCH] hdb-mitdb: correct missing equals in initialization --- lib/hdb/hdb-mitdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hdb/hdb-mitdb.c b/lib/hdb/hdb-mitdb.c index c9df36db2..4c22f328a 100644 --- a/lib/hdb/hdb-mitdb.c +++ b/lib/hdb/hdb-mitdb.c @@ -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");