diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2020-02-20 09:45:00 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2020-02-20 09:45:00 +0800 |
commit | a7578459c20e8f6c08c764b09fbd11cae49bc18f (patch) | |
tree | 3480082546b763bbe96f8d3f3e891ad73ed24e17 | |
parent | 5ace0beeaae075eb5cfd01748d52d1e21ffdc4f7 (diff) |
Fixes crash when loading StreamTexture from file
-rw-r--r-- | scene/resources/texture.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scene/resources/texture.cpp b/scene/resources/texture.cpp index 60a9ca8f0f..7fb3ba5155 100644 --- a/scene/resources/texture.cpp +++ b/scene/resources/texture.cpp @@ -405,7 +405,6 @@ Ref<Image> StreamTexture::load_image_from_file(FileAccess *f, int p_size_limit) } if (img.is_null() || img->empty()) { - memdelete(f); ERR_FAIL_COND_V(img.is_null() || img->empty(), Ref<Image>()); } |