From 3b37f50e50090a8869f663d428b21e8b333a00e3 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Tue, 1 Nov 2022 11:37:02 -0600 Subject: Remove `zf != NULL` check from `ZIPPacker::start_file` This check was removed because it introduces a bug which prevents ZIPPacker from actually adding any files, since it must be opened before adding any files (and therefore shouldn't be NULL at the start of `start_file`). --- modules/zip/zip_packer.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'modules/zip') diff --git a/modules/zip/zip_packer.cpp b/modules/zip/zip_packer.cpp index c37fc0945e..e62700f191 100644 --- a/modules/zip/zip_packer.cpp +++ b/modules/zip/zip_packer.cpp @@ -50,7 +50,6 @@ Error ZIPPacker::close() { } Error ZIPPacker::start_file(String p_path) { - ERR_FAIL_COND_V_MSG(zf != NULL, FAILED, "ZIPPacker is already in use."); ERR_FAIL_COND_V_MSG(fa.is_null(), FAILED, "ZIPPacker must be opened before use."); zip_fileinfo zipfi; -- cgit v1.2.3