Fix memory leak

This commit is contained in:
XOR 2023-09-21 23:39:50 +02:00
parent e9a3dc6ec7
commit 6238291ab3

View file

@ -206,6 +206,8 @@ int main(int argc, char **argv)
// Cleanup
destroy_instruction_information_hashtable(&instruction_informations);
shash_destroy_hashtable(&label_table);
free(target_code.buffer);
free(tokens.buffer);
return EXIT_SUCCESS;
}