From 4265461e9b5afa402dc88e317ef55092fcb0e38e Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Wed, 9 Sep 2026 13:42:30 -0500 Subject: [PATCH] Skip unknown ASF values (#1439) --- taglib/asf/asfattribute.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/taglib/asf/asfattribute.cpp b/taglib/asf/asfattribute.cpp index 81060003..fb0a90ab 100644 --- a/taglib/asf/asfattribute.cpp +++ b/taglib/asf/asfattribute.cpp @@ -235,6 +235,7 @@ String ASF::Attribute::parse(ASF::File &file, int kind) default: debug(Utils::formatString( "ASF::Attribute::parse() -- Unknown data type 0x%hx", dataType)); + file.seek(size, File::Current); return {}; } d->type = static_cast(dataType);