From 8164823f9b5d866aff9fe18e7965ed88f39b0f3b Mon Sep 17 00:00:00 2001 From: David Korth Date: Fri, 31 May 2019 01:43:04 -0400 Subject: [PATCH] Mst::saveXML(const TCHAR*): TODO: Delete the XML file on error? --- src/Mst.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mst.cpp b/src/Mst.cpp index 5dc8d87..dfddbe1 100644 --- a/src/Mst.cpp +++ b/src/Mst.cpp @@ -877,6 +877,7 @@ int Mst::saveXML(const TCHAR *filename) const } int ret = saveXML(f_xml); fclose(f_xml); + // TODO: Delete the XML file on error? return ret; }