зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1110585 - Inconsistent timestamp in storage metadata file; r=bent
This commit is contained in:
Родитель
e7d2f9cd12
Коммит
0adbc46b12
|
@ -878,6 +878,10 @@ GetLastModifiedTime(nsIFile* aFile, int64_t* aTimestamp)
|
|||
return rv;
|
||||
}
|
||||
|
||||
// Need to convert from milliseconds to microseconds.
|
||||
MOZ_ASSERT((INT64_MAX / PR_USEC_PER_MSEC) > timestamp);
|
||||
timestamp *= int64_t(PR_USEC_PER_MSEC);
|
||||
|
||||
if (timestamp > *aTimestamp) {
|
||||
*aTimestamp = timestamp;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче