mirror of
https://github.com/MariaDB/server.git
synced 2025-04-21 22:55:35 +02:00
Fix windows os_file_write.
This commit is contained in:
parent
b8e0bc3a67
commit
e656a8a927
1 changed files with 2 additions and 2 deletions
|
@ -5179,11 +5179,11 @@ os_aio_windows_handle(
|
|||
case OS_FILE_WRITE:
|
||||
if (slot->message1 && slot->page_compression && slot->page_buf) {
|
||||
ret_val = os_file_write(slot->name, slot->file, slot->page_buf,
|
||||
slot->control.Offset, slot->control.OffsetHigh, slot->len);
|
||||
slot->offset, slot->len);
|
||||
} else {
|
||||
|
||||
ret_val = os_file_write(slot->name, slot->file, slot->buf,
|
||||
slot->control.Offset, slot->control.OffsetHigh, slot->len);
|
||||
slot->offset, slot->len);
|
||||
}
|
||||
break;
|
||||
case OS_FILE_READ:
|
||||
|
|
Loading…
Add table
Reference in a new issue