diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-06-21 02:43:17 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-06-21 02:43:17 +0200 |
commit | c976a61f60e32be3391c759ef86a41db4bbd62b0 (patch) | |
tree | 4855fa2debb4a6dc4706acb89d831082bbc45eb3 | |
parent | b3930f14c0c9bb7e4c69664090c568900849c50a (diff) |
Avoid memory leak
-rw-r--r-- | src/codegen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/codegen.c b/src/codegen.c index 3088cc1..f835f5c 100644 --- a/src/codegen.c +++ b/src/codegen.c @@ -49,6 +49,7 @@ codegen(const char *file, struct type *types, struct ast ast, if (LLVMVerifyModule(ctx.mod, LLVMReturnStatusAction, &error) == 1) err("codegen: %s", error); + LLVMDisposeMessage(error); LLVMDumpModule(ctx.mod); LLVMDisposeModule(ctx.mod); LLVMContextDispose(ctx.ctx); |