summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorK. S. Ernest (iFIre) Lee <ernest.lee@chibifire.com>2019-05-30 09:08:37 -0700
committerK. S. Ernest (iFIre) Lee <ernest.lee@chibifire.com>2019-05-30 09:08:52 -0700
commitb42df97edd4b855141f10e21145d471fcc93cad0 (patch)
tree51b23269ad553752681e66284fd78a33be5101a8 /editor
parent6895ad303b51aaf84a568c982e3622049a50ed37 (diff)
Check error code before using FileAccess to create a preview and crashing.
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_resource_preview.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_resource_preview.cpp b/editor/editor_resource_preview.cpp
index 2baad8c904..6cca0a0ffa 100644
--- a/editor/editor_resource_preview.cpp
+++ b/editor/editor_resource_preview.cpp
@@ -203,7 +203,9 @@ void EditorResourcePreview::_generate_preview(Ref<ImageTexture> &r_texture, Ref<
if (has_small_texture) {
ResourceSaver::save(cache_base + "_small.png", r_small_texture);
}
- FileAccess *f = FileAccess::open(cache_base + ".txt", FileAccess::WRITE);
+ Error err;
+ FileAccess *f = FileAccess::open(cache_base + ".txt", FileAccess::WRITE, &err);
+ ERR_FAIL_COND(err != OK);
f->store_line(itos(thumbnail_size));
f->store_line(itos(has_small_texture));
f->store_line(itos(FileAccess::get_modified_time(p_item.path)));