Blame SOURCES/exiv2-CVE-2021-31291.patch

2af963
From 13e5a3e02339b746abcaee6408893ca2fd8e289d Mon Sep 17 00:00:00 2001
2af963
From: Pydera <pydera@mailbox.org>
2af963
Date: Thu, 8 Apr 2021 17:36:16 +0200
2af963
Subject: [PATCH] Fix out of buffer access in #1529
2af963
2af963
---
2af963
 src/jp2image.cpp | 5 +++--
2af963
 1 file changed, 3 insertions(+), 2 deletions(-)
2af963
2af963
diff --git a/src/jp2image.cpp b/src/jp2image.cpp
2af963
index 1892fd4..01a21f2 100644
2af963
--- a/src/jp2image.cpp
2af963
+++ b/src/jp2image.cpp
2af963
@@ -737,9 +737,10 @@ namespace Exiv2
2af963
 #endif
2af963
                 box.length = io_->size() - io_->tell() + 8;
2af963
             }
2af963
-            if (box.length == 1)
2af963
+            if (box.length < 8)
2af963
             {
2af963
-                // FIXME. Special case. the real box size is given in another place.
2af963
+                // box is broken, so there is nothing we can do here
2af963
+                throw Error(kerCorruptedMetadata);
2af963
             }
2af963
2af963
             // Read whole box : Box header + Box data (not fixed size - can be null).