aboutsummaryrefslogtreecommitdiff
path: root/fptr_ast/ref.c
diff options
context:
space:
mode:
Diffstat (limited to 'fptr_ast/ref.c')
-rw-r--r--fptr_ast/ref.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fptr_ast/ref.c b/fptr_ast/ref.c
index 6169a25..c428566 100644
--- a/fptr_ast/ref.c
+++ b/fptr_ast/ref.c
@@ -30,4 +30,8 @@ int main()
init_matrices(A, B);
matrix_mult(A, B, C);
printf("%zu\n", hash(C));
+
+ free(A);
+ free(B);
+ free(C);
}