mirror of
https://github.com/godotengine/godot.git
synced 2025-02-01 14:45:22 +00:00
Fixes leak when importing zip in AssetLib
This commit is contained in:
parent
5127afa812
commit
a7368a519e
@ -97,6 +97,7 @@ int zipio_close(voidpf opaque, voidpf stream) {
|
||||
FileAccess *&f = *(FileAccess **)opaque;
|
||||
if (f) {
|
||||
f->close();
|
||||
memdelete(f);
|
||||
f = NULL;
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user