diff options
-rw-r--r-- | storage/xtradb/os/os0file.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/xtradb/os/os0file.cc b/storage/xtradb/os/os0file.cc index 8366457b968..10b30621de5 100644 --- a/storage/xtradb/os/os0file.cc +++ b/storage/xtradb/os/os0file.cc @@ -5303,16 +5303,16 @@ 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->offset, slot->len); + slot->offset, slot->len); } else { ret_val = os_file_write(slot->name, slot->file, slot->buf, - slot->offset, slot->len); + slot->offset, slot->len); } break; case OS_FILE_READ: ret_val = os_file_read(slot->file, slot->buf, - slot->offset, slot->len); + slot->offset, slot->len, slot->page_compression); break; default: ut_error; |