fix: revert project files free (already freed in init)

This commit is contained in:
2026-05-16 16:22:39 +02:00
parent 0fd78bf4cc
commit fb77d8e893
2 changed files with 2 additions and 3 deletions
+1
View File
@@ -133,5 +133,6 @@ void file_write(const char *path, const StringArray *lines) {
void file_free(File *file) {
if (!file->error && file->content != NULL) {
free(file->content);
file->content = NULL;
}
}