From a17af6eff74980a1f1811741cc19067585c39b34 Mon Sep 17 00:00:00 2001 From: Anachronaut <75824887+RealBusinessAccount@users.noreply.github.com> Date: Sat, 26 Oct 2024 15:46:09 -0400 Subject: [PATCH] Update Assembler.c --- Source/Assembler/Assembler.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Source/Assembler/Assembler.c b/Source/Assembler/Assembler.c index 8c2bbdd..76acc9b 100644 --- a/Source/Assembler/Assembler.c +++ b/Source/Assembler/Assembler.c @@ -71,14 +71,11 @@ void assemblerCleanup(intermediateElement *intermediateArray, int arraySize, cha } // Free the intermediateArray itself. free(intermediateArray); - // Free the list of included files. freeIncludeList(); - // Free the list of labels. freeLabelList(); - - // Free the output file name + // Free the output file name. free(outputFileName); }