Merge pull request #4081 from DerTee/master

fix error handling in os2.read_entire_file_from_file()
This commit is contained in:
gingerBill
2024-08-14 22:12:06 +01:00
committed by GitHub

View File

@@ -126,6 +126,7 @@ read_entire_file_from_file :: proc(f: ^File, allocator: runtime.Allocator) -> (d
size = int(size64)
}
} else if serr != .No_Size {
err = serr
return
}