Merge pull request #35345 from timothyqiu/pck-packer-leak
Fixes leak when calling PCKPacker::pck_start multiple times
This commit is contained in:
commit
11260fb87f
1 changed files with 4 additions and 0 deletions
|
@ -63,6 +63,10 @@ void PCKPacker::_bind_methods() {
|
||||||
|
|
||||||
Error PCKPacker::pck_start(const String &p_file, int p_alignment) {
|
Error PCKPacker::pck_start(const String &p_file, int p_alignment) {
|
||||||
|
|
||||||
|
if (file != NULL) {
|
||||||
|
memdelete(file);
|
||||||
|
}
|
||||||
|
|
||||||
file = FileAccess::open(p_file, FileAccess::WRITE);
|
file = FileAccess::open(p_file, FileAccess::WRITE);
|
||||||
|
|
||||||
ERR_FAIL_COND_V_MSG(!file, ERR_CANT_CREATE, "Can't open file to write: " + String(p_file) + ".");
|
ERR_FAIL_COND_V_MSG(!file, ERR_CANT_CREATE, "Can't open file to write: " + String(p_file) + ".");
|
||||||
|
|
Loading…
Reference in a new issue