diff options
author | Nong Van Tinh <vannongtinh@gmail.com> | 2022-10-19 20:19:02 +0700 |
---|---|---|
committer | Nong Van Tinh <vannongtinh@gmail.com> | 2022-10-19 20:19:02 +0700 |
commit | 5194c8af7c725b753c5ec5f25f2d42f27e0f78d3 (patch) | |
tree | f16b8cae264d9ec810a51b1f459e21338f0229bc /core/io/pck_packer.cpp | |
parent | 61051a44ccacbe447f14538b5bb4b68a62fc896f (diff) |
Fixes engine crashes caused by the user failing to initialize PCKPacker with pck_start()
Diffstat (limited to 'core/io/pck_packer.cpp')
-rw-r--r-- | core/io/pck_packer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/io/pck_packer.cpp b/core/io/pck_packer.cpp index aa1b323db2..0118b4c6af 100644 --- a/core/io/pck_packer.cpp +++ b/core/io/pck_packer.cpp @@ -107,6 +107,8 @@ Error PCKPacker::pck_start(const String &p_file, int p_alignment, const String & } Error PCKPacker::add_file(const String &p_file, const String &p_src, bool p_encrypt) { + ERR_FAIL_COND_V_MSG(file.is_null(), ERR_INVALID_PARAMETER, "File must be opened before use."); + Ref<FileAccess> f = FileAccess::open(p_src, FileAccess::READ); if (f.is_null()) { return ERR_FILE_CANT_OPEN; |