kdc: Fix bx509d/httpkadmind (b1dcc1a47)

This commit is contained in:
Nicolas Williams
2022-01-02 21:11:07 -06:00
parent bc7c73b5d7
commit 53e63d9ec9
2 changed files with 2 additions and 2 deletions

View File

@@ -881,7 +881,7 @@ set_req_desc(struct MHD_Connection *connection,
r->req = NULL;
r->req_life = 0;
r->ret = 0;
r->kv = heim_array_create();
r->kv = heim_dict_create(10);
ci = MHD_get_connection_info(connection,
MHD_CONNECTION_INFO_CLIENT_ADDRESS);
if (ci) {

View File

@@ -1528,7 +1528,7 @@ set_req_desc(struct MHD_Connection *connection,
r->sname = NULL;
r->cname = NULL;
r->addr = NULL;
r->kv = heim_array_create();
r->kv = heim_dict_create(10);
/* Our fields */
r->connection = connection;
r->kadm_handle = NULL;