Fixed negativ positions in SetFilePointer().

svn path=/trunk/; revision=2780
This commit is contained in:
Hartmut Birr 2002-03-25 21:07:17 +00:00
parent 68230ee1f4
commit 329e4b6888

View file

@ -1,4 +1,4 @@
/* $Id: file.c,v 1.28 2001/11/01 10:35:15 hbirr Exp $
/* $Id: file.c,v 1.29 2002/03/25 21:07:17 hbirr Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -172,7 +172,18 @@ SetFilePointer(HANDLE hFile,
hFile,lDistanceToMove,dwMoveMethod);
Distance.u.LowPart = lDistanceToMove;
Distance.u.HighPart = (lpDistanceToMoveHigh) ? *lpDistanceToMoveHigh : 0;
if (lpDistanceToMoveHigh)
{
Distance.u.HighPart = *lpDistanceToMoveHigh;
}
else if (lDistanceToMove >= 0)
{
Distance.u.HighPart = 0;
}
else
{
Distance.u.HighPart = -1;
}
if (dwMoveMethod == FILE_CURRENT)
{