Plugged memory leaks in the test

This commit is contained in:
2022-10-01 23:00:16 +10:00
parent 256538e1f9
commit 50cc5ca270

View File

@@ -99,6 +99,7 @@ int main() {
size_t size = 0; size_t size = 0;
char* source = readFile("../scripts//test/call-from-host.toy", &size); char* source = readFile("../scripts//test/call-from-host.toy", &size);
unsigned char* tb = compileString(source, &size); unsigned char* tb = compileString(source, &size);
free((void*)source);
if (!tb) { if (!tb) {
return -1; return -1;
@@ -272,6 +273,8 @@ int main() {
freeLiteralArray(&arguments); freeLiteralArray(&arguments);
freeLiteralArray(&returns); freeLiteralArray(&returns);
} }
freeLiteral(counter);
} }
//test assertion failure //test assertion failure