Don't cast Win32 FILETIME structs to int64. Patch by Dimitry Andric!
authorMichael J. Spencer <bigcheesegs@gmail.com>
Sat, 28 Aug 2010 16:39:32 +0000 (16:39 +0000)
committerMichael J. Spencer <bigcheesegs@gmail.com>
Sat, 28 Aug 2010 16:39:32 +0000 (16:39 +0000)
commit44edb0bd0c56483d6a7c473704d70ab67611d371
tree2954f3ece29d4c576f2dbc6e79c142efb0a8a43e
parent885b661e1004978f39cd1d74e586f193dfc0b0a6
Don't cast Win32 FILETIME structs to int64. Patch by Dimitry Andric!

According to the Microsoft documentation here:
http://msdn.microsoft.com/en-us/library/ms724284%28VS.85%29.aspx

this cast used in lib/System/Win32/Path.inc:

__int64 ft = *reinterpret_cast<__int64*>(&fi.ftLastWriteTime);

should not be done.  The documentation says: "Do not cast a pointer to a
FILETIME structure to either a ULARGE_INTEGER* or __int64* value because
it can cause alignment faults on 64-bit Windows."

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112376 91177308-0d34-0410-b5e6-96231b3b80d8
lib/System/Win32/Path.inc