mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 20:58:15 +00:00
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:
@@ -50,9 +50,9 @@ init_std_files :: proc() {
|
|||||||
}
|
}
|
||||||
@(fini)
|
@(fini)
|
||||||
fini_std_files :: proc() {
|
fini_std_files :: proc() {
|
||||||
close(stdin)
|
_destroy((^File_Impl)(stdin.impl))
|
||||||
close(stdout)
|
_destroy((^File_Impl)(stdout.impl))
|
||||||
close(stderr)
|
_destroy((^File_Impl)(stderr.impl))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user