Kaydet (Commit) 935c7c07 authored tarafından Andreu Correa Casablanca's avatar Andreu Correa Casablanca Kaydeden (comit) Caolán McNamara

Reduced the scope of a variable in core/sal/osl/w32/file_dirvol.cxx

üst 9f78448b
......@@ -60,7 +60,6 @@ extern "C" BOOL TimeValueToFileTime(const TimeValue *cpTimeVal, FILETIME *pFTime
SYSTEMTIME BaseSysTime;
FILETIME BaseFileTime;
FILETIME FTime;
__int64 localTime;
BOOL fSuccess = FALSE;
BaseSysTime.wYear = 1970;
......@@ -77,7 +76,9 @@ extern "C" BOOL TimeValueToFileTime(const TimeValue *cpTimeVal, FILETIME *pFTime
if ( SystemTimeToFileTime(&BaseSysTime, &BaseFileTime) )
{
__int64 localTime;
__int64 timeValue;
localTime=cpTimeVal->Seconds*(__int64)10000000+cpTimeVal->Nanosec/100;
*(__int64 *)&FTime=localTime;
fSuccess = 0 <= (timeValue= *((__int64 *)&BaseFileTime) + *((__int64 *) &FTime));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment