Update Assembler.c

This commit is contained in:
Anachronaut
2024-10-26 15:46:09 -04:00
committed by GitHub
parent f3dcd2bddf
commit a17af6eff7
+1 -4
View File
@@ -71,14 +71,11 @@ void assemblerCleanup(intermediateElement *intermediateArray, int arraySize, cha
} }
// Free the intermediateArray itself. // Free the intermediateArray itself.
free(intermediateArray); free(intermediateArray);
// Free the list of included files. // Free the list of included files.
freeIncludeList(); freeIncludeList();
// Free the list of labels. // Free the list of labels.
freeLabelList(); freeLabelList();
// Free the output file name.
// Free the output file name
free(outputFileName); free(outputFileName);
} }