Free heap allocations

This commit is contained in:
Isaac Shoebottom 2023-11-16 23:50:51 -04:00
parent 71342900db
commit e497514110

View File

@ -240,5 +240,7 @@ int main(int argc, char **argv) {
break; break;
} }
} }
// Free the memory, just for good measure
free(memory)
return 0; return 0;
} }