diff options
author | Cy Schubert <cy@FreeBSD.org> | 2022-05-11 02:57:09 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2022-05-11 02:57:09 +0000 |
commit | d5d1e8b157da7410fe13e6302f8e1bee81320bb5 (patch) | |
tree | 5594da91d467145d2f3702f013b68c70126757e2 | |
parent | 49af073ed77202a54dfdd773cbcbbf7835c75baf (diff) | |
download | src-vendor/heimdal.tar.gz src-vendor/heimdal.zip |
vendor/heimdal: Import vendor patch 3bcc03193vendor/heimdal
hdb-mitdb: correct missing equals in initialization
-rw-r--r-- | lib/hdb/hdb-mitdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hdb/hdb-mitdb.c b/lib/hdb/hdb-mitdb.c index f3f8cf24c271..74a573441e9e 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"); |