Преглед на файлове

Fix `pread` and `pwrite` on `os2` Windows

The previous code was jumping ahead by the specified offset, instead of
getting the current offset.
Feoramund преди 1 година
родител
ревизия
ef99373c31
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      core/os/os2/file_windows.odin

+ 2 - 2
core/os/os2/file_windows.odin

@@ -354,7 +354,7 @@ _read_at :: proc(f: ^File_Impl, p: []byte, offset: i64) -> (n: i64, err: Error)
 			buf = buf[:MAX_RW]
 
 		}
-		curr_offset := _seek(f, offset, .Current) or_return
+		curr_offset := _seek(f, 0, .Current) or_return
 		defer _seek(f, curr_offset, .Start)
 
 		o := win32.OVERLAPPED{
@@ -423,7 +423,7 @@ _write_at :: proc(f: ^File_Impl, p: []byte, offset: i64) -> (n: i64, err: Error)
 			buf = buf[:MAX_RW]
 
 		}
-		curr_offset := _seek(f, offset, .Current) or_return
+		curr_offset := _seek(f, 0, .Current) or_return
 		defer _seek(f, curr_offset, .Start)
 
 		o := win32.OVERLAPPED{