Merge pull request #5851 from leoetlino/sysconf-fix
SysConf: Fix writing a new SYSCONF
This commit is contained in:
commit
ed331918f0
|
@ -197,7 +197,7 @@ bool SysConf::Save() const
|
||||||
std::copy(footer.cbegin(), footer.cend(), buffer.end() - footer.size());
|
std::copy(footer.cbegin(), footer.cend(), buffer.end() - footer.size());
|
||||||
|
|
||||||
// Write the new data.
|
// Write the new data.
|
||||||
const std::string temp_file = File::GetTempFilenameForAtomicWrite(m_file_name);
|
const std::string temp_file = m_file_name + ".tmp";
|
||||||
File::CreateFullPath(temp_file);
|
File::CreateFullPath(temp_file);
|
||||||
{
|
{
|
||||||
File::IOFile file(temp_file, "wb");
|
File::IOFile file(temp_file, "wb");
|
||||||
|
|
Loading…
Reference in New Issue