summaryrefslogtreecommitdiff
path: root/src/transform_hierarchy.c
diff options
context:
space:
mode:
authorOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-17 16:04:43 +1100
committerOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-17 16:04:43 +1100
commita757e6ffacb59a0956ded192442c43a813b69313 (patch)
treeb13ad1395450893df0cddf2ab9685d9ec29c2d67 /src/transform_hierarchy.c
parent23432fa4b1e4503f6ce7264f1a64fbb9bb42ac3d (diff)
free print_ctx
Diffstat (limited to 'src/transform_hierarchy.c')
-rw-r--r--src/transform_hierarchy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/transform_hierarchy.c b/src/transform_hierarchy.c
index a8b3df1..c478dd5 100644
--- a/src/transform_hierarchy.c
+++ b/src/transform_hierarchy.c
@@ -179,4 +179,5 @@ void transform_hierarchy_debug_print(transform_node* start_node, core* core) {
ctx->core = core;
ctx->indentation_lvl = 0;
transform_hierarchy_dfs(start_node, print_node, true, (void*)ctx);
+ free(ctx);
} \ No newline at end of file