You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
Fixes memory leak when loading StreamTexture
This commit is contained in:
@@ -588,6 +588,8 @@ Error StreamTexture::_load_data(const String &p_path, int &tw, int &th, int &tw_
|
|||||||
|
|
||||||
image = load_image_from_file(f, p_size_limit);
|
image = load_image_from_file(f, p_size_limit);
|
||||||
|
|
||||||
|
memdelete(f);
|
||||||
|
|
||||||
if (image.is_null() || image->empty()) {
|
if (image.is_null() || image->empty()) {
|
||||||
return ERR_CANT_OPEN;
|
return ERR_CANT_OPEN;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user