Skip to content
Snippets Groups Projects
Commit 94f06ba3 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

zone-update: fix memory leak in zone_update_clear if full update

Can be reproduced by server shutdown after failed initial zone-commit.
parent 382273c4
No related branches found
No related tags found
No related merge requests found
Pipeline #46830 passed
......@@ -333,6 +333,7 @@ void zone_update_clear(zone_update_t *update)
changeset_clear(&update->change);
} else if (update->flags & UPDATE_FULL) {
assert(update->new_cont_deep_copy);
update_cleanup(update->a_ctx);
zone_contents_deep_free(update->new_cont);
}
free(update->a_ctx);
......
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