mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Use QSaveFile to be sure the file is fully written
--HG-- branch : develop
This commit is contained in:
parent
637895e578
commit
469bd13a28
1 changed files with 4 additions and 4 deletions
|
@ -462,7 +462,7 @@ bool CFilesExtractor::extract7z()
|
||||||
}
|
}
|
||||||
|
|
||||||
// create file
|
// create file
|
||||||
QFile outFile(destPath);
|
QSaveFile outFile(destPath);
|
||||||
|
|
||||||
if (!outFile.open(QFile::WriteOnly))
|
if (!outFile.open(QFile::WriteOnly))
|
||||||
{
|
{
|
||||||
|
@ -496,7 +496,7 @@ bool CFilesExtractor::extract7z()
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
outFile.close();
|
outFile.commit();
|
||||||
|
|
||||||
totalUncompressed += uncompressedSize;
|
totalUncompressed += uncompressedSize;
|
||||||
|
|
||||||
|
@ -620,7 +620,7 @@ bool CFilesExtractor::extractZip()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
QFile f(absPath);
|
QSaveFile f(absPath);
|
||||||
|
|
||||||
if (!f.open(QIODevice::WriteOnly))
|
if (!f.open(QIODevice::WriteOnly))
|
||||||
{
|
{
|
||||||
|
@ -637,7 +637,7 @@ bool CFilesExtractor::extractZip()
|
||||||
nlwarning("Unable to change permissions of %s", Q2C(absPath));
|
nlwarning("Unable to change permissions of %s", Q2C(absPath));
|
||||||
}
|
}
|
||||||
|
|
||||||
f.close();
|
f.commit();
|
||||||
|
|
||||||
// set the right modification date
|
// set the right modification date
|
||||||
if (!NLMISC::CFile::setFileModificationDate(qToUtf8(absPath), fi.lastModified.toTime_t()))
|
if (!NLMISC::CFile::setFileModificationDate(qToUtf8(absPath), fi.lastModified.toTime_t()))
|
||||||
|
|
Loading…
Reference in a new issue