Commit 96935020 for libheif

commit 96935020b5a16b838c946b038b09d95f1d3326ac
Author: Dirk Farin <dirk.farin@gmail.com>
Date:   Wed Apr 8 02:06:23 2026 +0200

    fix size check when reading JPEG EXIFs with 5-7 bytes length

diff --git a/heifio/exif.cc b/heifio/exif.cc
index e0ffd889..73bf02ae 100644
--- a/heifio/exif.cc
+++ b/heifio/exif.cc
@@ -171,7 +171,7 @@ static uint32_t find_exif_tag(const uint8_t* exif, uint32_t size, uint16_t query
 {
   // read TIFF header

-  if (size < 4) {
+  if (size < 8) {
     return 0;
   }