From 13c4168af002038fbdff0eda0135543e1308c312 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 fe3dd71..830ca5f 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;