1. 01 Nov, 2017 20 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 2 commits
    • 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
    • Vladislav Vaintroub's avatar
      Fix some warnings · 769f0603
      Vladislav Vaintroub authored
      769f0603