Merge pull request #36376 from timothyqiu/fix-load-image-crash

Fixes crash when loading StreamTexture from file
This commit is contained in:
Rémi Verschelde 2020-02-20 06:49:11 +01:00 committed by GitHub
commit 9f9447ea9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>());
}