diff options
author | qarmin <mikrutrafal54@gmail.com> | 2019-08-30 13:46:05 +0200 |
---|---|---|
committer | qarmin <mikrutrafal54@gmail.com> | 2019-08-30 13:46:05 +0200 |
commit | b244ab4acc85ae89dc5f64bc528559db408b890c (patch) | |
tree | d253b97f88c80edecf90737a5d62d143e41080e8 | |
parent | 208dd5b4a657e616af9f3da5e690a85247079847 (diff) |
Fix memory leak in ResourceFormatSaverBinary::save
-rw-r--r-- | core/io/resource_format_binary.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/io/resource_format_binary.cpp b/core/io/resource_format_binary.cpp index de10fe1376..0ad2479b05 100644 --- a/core/io/resource_format_binary.cpp +++ b/core/io/resource_format_binary.cpp @@ -1786,6 +1786,7 @@ Error ResourceFormatSaverBinaryInstance::save(const String &p_path, const RES &p if (f->get_error() != OK && f->get_error() != ERR_FILE_EOF) { f->close(); + memdelete(f); return ERR_CANT_CREATE; } @@ -1938,10 +1939,12 @@ Error ResourceFormatSaverBinaryInstance::save(const String &p_path, const RES &p if (f->get_error() != OK && f->get_error() != ERR_FILE_EOF) { f->close(); + memdelete(f); return ERR_CANT_CREATE; } f->close(); + memdelete(f); return OK; } |