Fixed a resource leak in win/win.c.

This commit is contained in:
OBattler
2020-01-14 22:23:56 +01:00
parent b9f3fdc548
commit 2d5a8dc49c

View File

@@ -267,6 +267,11 @@ CreateConsole(int init)
}
}
}
if (fp != NULL) {
fclose(fp);
fp = NULL;
}
}