From b3ef2d42fce19bf3c3b5b9c10c375afd39b72fdc Mon Sep 17 00:00:00 2001 From: "Sewer." Date: Fri, 13 Dec 2024 09:21:47 +0000 Subject: [PATCH] patterns/bzip3: Fixed Incorrect field on branch (#330) --- patterns/bzip3.hexpat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/bzip3.hexpat b/patterns/bzip3.hexpat index fe3dd71a..830ca5f1 100644 --- a/patterns/bzip3.hexpat +++ b/patterns/bzip3.hexpat @@ -47,7 +47,7 @@ struct Chunk { u32 compressedSize; // Size of compressed block u32 origSize; // Original uncompressed size - if (compressedSize < 64) { + if (origSize < 64) { SmallBlock block; } else { Block block;