Skip to content

Commit

Permalink
Account for our new libCOMBINE binaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Jun 4, 2024
1 parent f900bc9 commit 687faeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/support/combine/combinearchive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ CombineArchivePtr CombineArchive::create(const FilePtr &pFile)
&& (fileContents[0] + (fileContents[1] << LS8) + (fileContents[2] << LS16) + (fileContents[3] << LS24) == ZIP_MAGIC_NUMBER)) {
auto *archive = new libcombine::CombineArchive {};

archive->initializeFromArchive(fileContents);
archive->initializeFromBuffer(fileContents);

return CombineArchivePtr {new CombineArchive {archive}};
}
Expand Down

0 comments on commit 687faeb

Please sign in to comment.