From 834bf0622f06f31accd56dc928b62604d52a7186 Mon Sep 17 00:00:00 2001 From: Urs Fleisch Date: Sat, 11 Jul 2026 09:03:18 +0200 Subject: [PATCH] Fix seeking next atom after stem with 64-bit length (#1363) (#1378) --- taglib/mp4/mp4atom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taglib/mp4/mp4atom.cpp b/taglib/mp4/mp4atom.cpp index 6f6ad68c..b279ab05 100644 --- a/taglib/mp4/mp4atom.cpp +++ b/taglib/mp4/mp4atom.cpp @@ -88,7 +88,7 @@ MP4::Atom::Atom(File *file, int depth) d->name = header.mid(4, 4); if(d->name == "stem") { - file->seek(d->length - 8, File::Current); + file->seek(d->offset + d->length); return; }