Commit 81318f04 authored by Jan Lindström's avatar Jan Lindström

Yet more windows fixes.

parent e656a8a9
......@@ -6246,12 +6246,12 @@ os_file_trim(
FALSE, __FILE__, __LINE__);
if (slot->write_size) {
slot->write_size = 0;
*slot->write_size = 0;
}
return (FALSE);
} else {
if (slot->write_size) {
slot->write_size = len;
*slot->write_size = len;
}
}
#endif
......
......@@ -5188,7 +5188,7 @@ os_aio_windows_handle(
break;
case OS_FILE_READ:
ret_val = os_file_read(slot->file, slot->buf,
slot->control.Offset, slot->control.OffsetHigh, slot->len);
slot->offset, slot->len);
break;
default:
ut_error;
......@@ -6311,12 +6311,12 @@ os_file_trim(
FALSE, __FILE__, __LINE__);
if (slot->write_size) {
slot->write_size = 0;
*slot->write_size = 0;
}
return (FALSE);
} else {
if (slot->write_size) {
slot->write_size = len;
*slot->write_size = len;
}
}
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment