Skip to content
Snippets Groups Projects
Commit 47233e9a authored by Jan Kadlec's avatar Jan Kadlec
Browse files

Small fixes.

Refs #196
parent d4779bd5
No related branches found
No related tags found
2 merge requests!123DNSSEC - NSEC/NSEC3 chain fix,!122DNSSEC: NSEC/NSEC3 chain fixing
......@@ -1049,7 +1049,9 @@ static bool rr_already_signed(const knot_rrset_t *rrset, hattrie_t *t)
static int free_list(value_t *val, void *d)
{
UNUSED(d);
WALK_LIST_FREE(*((list_t *)val));
list_t *l = (list_t *)*val;
WALK_LIST_FREE(*l);
free(l);
return KNOT_EOK;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment