summaryrefslogtreecommitdiff
path: root/drivers/windows
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-06-13 10:10:50 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-06-13 10:10:50 -0300
commit7f02627290cedf2d5ef6b45cddc6117c763cb15b (patch)
treee25e3f1a33e63a941732c8e920908c3e20bab113 /drivers/windows
parentf0abda999e179faf1577026d0369062349cb4897 (diff)
-Add visible IO errors when closing a file fails due to it being locked (most likely on windows), closes #4760
Diffstat (limited to 'drivers/windows')
-rw-r--r--drivers/windows/file_access_windows.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/windows/file_access_windows.cpp b/drivers/windows/file_access_windows.cpp
index 66181a6f44..3f27068fb2 100644
--- a/drivers/windows/file_access_windows.cpp
+++ b/drivers/windows/file_access_windows.cpp
@@ -131,6 +131,10 @@ void FileAccessWindows::close() {
//atomic replace for existing file
rename_error = !ReplaceFileW(save_path.c_str(), (save_path+".tmp").c_str(), NULL, 2|4, NULL, NULL);
}
+ if (rename_error && close_fail_notify) {
+ close_fail_notify(save_path);
+ }
+
save_path="";
ERR_FAIL_COND( rename_error );
}