summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorqarmin <mikrutrafal54@gmail.com>2019-08-30 13:46:05 +0200
committerqarmin <mikrutrafal54@gmail.com>2019-08-30 13:46:05 +0200
commitb244ab4acc85ae89dc5f64bc528559db408b890c (patch)
treed253b97f88c80edecf90737a5d62d143e41080e8
parent208dd5b4a657e616af9f3da5e690a85247079847 (diff)
Fix memory leak in ResourceFormatSaverBinary::save
-rw-r--r--core/io/resource_format_binary.cpp3
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;
}