浏览代码

Fix EOF detection is os2 window read

Laytan Laats 1 年之前
父节点
当前提交
0f2ad95014
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      core/os/os2/file_windows.odin

+ 4 - 0
core/os/os2/file_windows.odin

@@ -343,6 +343,10 @@ _read_internal :: proc(f: ^File_Impl, p: []byte) -> (n: i64, err: Error) {
 
 		if single_read_length > 0 && ok {
 			total_read += int(single_read_length)
+		} else if single_read_length == 0 && ok {
+			// ok and 0 bytes means EOF:
+			// https://learn.microsoft.com/en-us/windows/win32/fileio/testing-for-the-end-of-a-file
+			err = .EOF
 		} else {
 			err = _get_platform_error()
 		}