Mst::saveXML(const TCHAR*): TODO: Delete the XML file on error?

This commit is contained in:
David Korth 2019-05-31 01:43:04 -04:00
parent bb68f00dfe
commit 8164823f9b

View File

@ -877,6 +877,7 @@ int Mst::saveXML(const TCHAR *filename) const
} }
int ret = saveXML(f_xml); int ret = saveXML(f_xml);
fclose(f_xml); fclose(f_xml);
// TODO: Delete the XML file on error?
return ret; return ret;
} }