Fix #4406 os2 to not close the std file handles but rather just free the memory for the ^File data.

This commit is contained in:
gingerBill
2024-11-04 11:55:29 +00:00
parent 7a98b58189
commit aa36ae01cf

View File

@@ -50,9 +50,9 @@ init_std_files :: proc() {
}
@(fini)
fini_std_files :: proc() {
close(stdin)
close(stdout)
close(stderr)
_destroy((^File_Impl)(stdin.impl))
_destroy((^File_Impl)(stdout.impl))
_destroy((^File_Impl)(stderr.impl))
}