summaryrefslogtreecommitdiff
path: root/platform/uwp
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-05-11 15:15:58 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-05-11 16:08:17 +0300
commitd36c5514d3893578f1c8cce4d0a2256abfcdd1ed (patch)
treec591ac745d635c3320f7a858cdd7dd43065a894a /platform/uwp
parent9963ae3553d059e4ac3b57c7a4cdc55d1a87d49a (diff)
Fix ZipIO crash when reused (and possible leaks).
Diffstat (limited to 'platform/uwp')
-rw-r--r--platform/uwp/export/export_plugin.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/uwp/export/export_plugin.cpp b/platform/uwp/export/export_plugin.cpp
index 7e06bf01e3..65a5ee7140 100644
--- a/platform/uwp/export/export_plugin.cpp
+++ b/platform/uwp/export/export_plugin.cpp
@@ -301,7 +301,8 @@ Error EditorExportPlatformUWP::export_project(const Ref<EditorExportPreset> &p_p
AppxPackager packager;
packager.init(fa_pack);
- zlib_filefunc_def io = zipio_create_io();
+ Ref<FileAccess> io_fa;
+ zlib_filefunc_def io = zipio_create_io(&io_fa);
if (ep.step("Creating package...", 0)) {
return ERR_SKIP;