mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 23:06:16 -04:00
Merge commit 'refs/pull/932/head' of github.com:gchq/CyberChef into n1073645-moreExtractors
This commit is contained in:
commit
154b9386f7
1 changed files with 9 additions and 12 deletions
|
@ -3887,7 +3887,6 @@ export function extractLZOP(bytes, offset) {
|
||||||
// Move past checksum.
|
// Move past checksum.
|
||||||
stream.moveForwardsBy(4);
|
stream.moveForwardsBy(4);
|
||||||
|
|
||||||
try {
|
|
||||||
while (stream.hasMore()) {
|
while (stream.hasMore()) {
|
||||||
const uncompSize = stream.readInt(4, "be");
|
const uncompSize = stream.readInt(4, "be");
|
||||||
|
|
||||||
|
@ -3902,8 +3901,6 @@ export function extractLZOP(bytes, offset) {
|
||||||
// skip forwards by compressed data size and the size of the checksum(s).
|
// skip forwards by compressed data size and the size of the checksum(s).
|
||||||
stream.moveForwardsBy(compSize + (numCheckSumSkip * 4));
|
stream.moveForwardsBy(compSize + (numCheckSumSkip * 4));
|
||||||
}
|
}
|
||||||
} catch (error) {
|
|
||||||
}
|
|
||||||
return stream.carve();
|
return stream.carve();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue