summaryrefslogtreecommitdiff
path: root/zenXml
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2019-01-16 00:44:17 +0000
committerDaniel Wilhelm <shieldwed@outlook.com>2019-01-16 00:44:17 +0000
commitc03ea582bff36fe020af1aa329b34f3e6d580f92 (patch)
tree41b8a3085df4de883f2993773b138f1436e041a4 /zenXml
parentMerge branch '10.7' into 'master' (diff)
parent10.8 (diff)
downloadFreeFileSync-c03ea582bff36fe020af1aa329b34f3e6d580f92.tar.gz
FreeFileSync-c03ea582bff36fe020af1aa329b34f3e6d580f92.tar.bz2
FreeFileSync-c03ea582bff36fe020af1aa329b34f3e6d580f92.zip
Merge branch '10.8' into 'master'10.8
10.8 See merge request opensource-tracking/FreeFileSync!5
Diffstat (limited to 'zenXml')
-rwxr-xr-xzenXml/zenxml/xml.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zenXml/zenxml/xml.h b/zenXml/zenxml/xml.h
index 15d635bd..27701248 100755
--- a/zenXml/zenxml/xml.h
+++ b/zenXml/zenxml/xml.h
@@ -90,7 +90,7 @@ void saveXml(const XmlDoc& doc, const Zstring& filePath) //throw FileError
try //only update XML file if there are changes
{
- if (getFileSize(filePath) == stream.size()) //throw FileError
+ if (getFileDetails(filePath).fileSize == stream.size()) //throw FileError
if (loadBinContainer<std::string>(filePath, nullptr /*notifyUnbufferedIO*/) == stream) //throw FileError
return;
}
bgstack15