зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1786608 - Do not set atime on Windows in nsLocalFile::SetModifiedTime r=xpcom-reviewers,kmag
Differential Revision: https://phabricator.services.mozilla.com/D155925
This commit is contained in:
Родитель
52f00192d7
Коммит
673df4196d
|
@ -2489,7 +2489,7 @@ nsresult nsLocalFile::SetModDate(PRTime aLastModifiedTime,
|
||||||
nsresult rv = NS_OK;
|
nsresult rv = NS_OK;
|
||||||
// if at least one of these fails...
|
// if at least one of these fails...
|
||||||
if (!(SystemTimeToFileTime(&st, &ft) != 0 &&
|
if (!(SystemTimeToFileTime(&st, &ft) != 0 &&
|
||||||
SetFileTime(file, nullptr, &ft, &ft) != 0)) {
|
SetFileTime(file, nullptr, nullptr, &ft) != 0)) {
|
||||||
rv = ConvertWinError(GetLastError());
|
rv = ConvertWinError(GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче