util.datamanager: Unreference file handle after closing it to prevent trying to close it again (fixes #632)
authorKim Alvefur <zash@zash.se>
Thu, 25 Feb 2016 22:36:42 +0100
changeset 7203 67ac4a0b6e50
parent 7108 01bd0ac9cf0c
child 7204 7a8cffafeff0
child 7224 56e65b1e54e8
util.datamanager: Unreference file handle after closing it to prevent trying to close it again (fixes #632)
util/datamanager.lua
--- a/util/datamanager.lua	Wed Jan 27 13:05:58 2016 +0000
+++ b/util/datamanager.lua	Thu Feb 25 22:36:42 2016 +0100
@@ -152,6 +152,7 @@
 		if not ok then break end
 
 		ok, msg = f:close();
+		f = nil; -- no longer valid
 		if not ok then break end
 
 		return os_rename(scratch, filename);