mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix memory leak on error paths in tinyexr loader
(cherry picked from commit f912a5aa56
)
This commit is contained in:
parent
90f7b2b8cf
commit
779414c1e8
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue