mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 11:32:13 +00:00
Fix memory leak on error paths in tinyexr loader
This commit is contained in:
parent
ce9901ef54
commit
f912a5aa56
@ -68,6 +68,7 @@ Error ImageLoaderTinyEXR::load_image(Ref<Image> p_image, Ref<FileAccess> f, BitF
|
||||
if (ret != TINYEXR_SUCCESS) {
|
||||
if (err) {
|
||||
ERR_PRINT(String(err));
|
||||
FreeEXRErrorMessage(err);
|
||||
}
|
||||
return ERR_FILE_CORRUPT;
|
||||
}
|
||||
@ -86,6 +87,7 @@ Error ImageLoaderTinyEXR::load_image(Ref<Image> p_image, Ref<FileAccess> f, BitF
|
||||
if (ret != TINYEXR_SUCCESS) {
|
||||
if (err) {
|
||||
ERR_PRINT(String(err));
|
||||
FreeEXRErrorMessage(err);
|
||||
}
|
||||
return ERR_FILE_CORRUPT;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user