diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-17 16:04:43 +1100 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-17 16:04:43 +1100 |
commit | a757e6ffacb59a0956ded192442c43a813b69313 (patch) | |
tree | b13ad1395450893df0cddf2ab9685d9ec29c2d67 /src | |
parent | 23432fa4b1e4503f6ce7264f1a64fbb9bb42ac3d (diff) |
free print_ctx
Diffstat (limited to 'src')
-rw-r--r-- | src/transform_hierarchy.c | 1 |
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 |