You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Check error code before using FileAccess to create a preview and crashing.
This commit is contained in:
@@ -203,7 +203,9 @@ void EditorResourcePreview::_generate_preview(Ref<ImageTexture> &r_texture, Ref<
|
|||||||
if (has_small_texture) {
|
if (has_small_texture) {
|
||||||
ResourceSaver::save(cache_base + "_small.png", r_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(thumbnail_size));
|
||||||
f->store_line(itos(has_small_texture));
|
f->store_line(itos(has_small_texture));
|
||||||
f->store_line(itos(FileAccess::get_modified_time(p_item.path)));
|
f->store_line(itos(FileAccess::get_modified_time(p_item.path)));
|
||||||
|
|||||||
Reference in New Issue
Block a user