mirror of
https://github.com/godotengine/godot.git
synced 2024-12-01 08:32:45 +00:00
33714 Check if the image is null before use.
This commit is contained in:
parent
3b44866bf2
commit
5d70a95fe1
@ -394,7 +394,9 @@ public:
|
||||
return Ref<Image>();
|
||||
} else {
|
||||
Ref<Texture> texture = ResourceLoader::load(p_path);
|
||||
ERR_FAIL_COND_V(texture.is_null(), Ref<Image>());
|
||||
Ref<Image> image = texture->get_data();
|
||||
ERR_FAIL_COND_V(image.is_null(), Ref<Image>());
|
||||
state.path_to_image_cache.insert(p_path, image);
|
||||
return image;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user