Stop crash in GetDiskFreeSpaceEx.

This commit is contained in:
Richard Cohen 1999-09-10 13:59:55 +00:00 committed by Alexandre Julliard
parent c9a50fd64f
commit 93b579fe28
1 changed files with 2 additions and 2 deletions

View File

@ -877,8 +877,8 @@ BOOL WINAPI GetDiskFreeSpaceExA( LPCSTR root,
/* Quick hack, should eventually be fixed to work 100% with
Windows2000 (see comment above). */
avail->HighPart = totalfree->HighPart;
avail->LowPart = totalfree->LowPart ;
avail->HighPart = available.HighPart;
avail->LowPart = available.LowPart ;
}
return TRUE;