diff options
Diffstat (limited to '')
-rw-r--r-- | updater/target_files.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/updater/target_files.cpp b/updater/target_files.cpp index 1581b25a0..2789683b1 100644 --- a/updater/target_files.cpp +++ b/updater/target_files.cpp @@ -132,6 +132,11 @@ bool TargetFile::ReadEntryToString(const std::string_view name, std::string* con return false; } + if (entry.uncompressed_length == 0) { + content->clear(); + return true; + } + content->resize(entry.uncompressed_length); if (auto extract_err = ExtractToMemory( handle_, &entry, reinterpret_cast<uint8_t*>(&content->at(0)), entry.uncompressed_length); |