1. 01 Nov, 2017 21 commits
  2. 31 Oct, 2017 2 commits
  3. 30 Oct, 2017 9 commits
  4. 29 Oct, 2017 6 commits
  5. 28 Oct, 2017 1 commit
  6. 27 Oct, 2017 1 commit
    • Vladislav Vaintroub's avatar
      MDEV-14115 : Do not use lpNumberOfBytesRead/Written params in · 97df230a
      Vladislav Vaintroub authored
      ReadFile/WriteFile operations.
      
      Innodb opens files with FILE_FLAG_OVERLAPPED. lpNumberOfBytesRead/Written
      are documented to be potentially inaccurate in this case,
      (possibly even if async operations complete synchronously?)
      
      The fix is to always pass NULL for the correspondng parameters,
      as recommended by  MSDN. Read the actual counts with
      GetQueuedCompletionStatus() or GetOverlappedResult().
      97df230a