From 4775c83d8dd4a4ae206d59dc608632f29f7454b2 Mon Sep 17 00:00:00 2001 From: "Stephen F. Booth" Date: Sun, 17 Dec 2023 17:17:28 -0600 Subject: [PATCH] Fix potential fallthrough --- taglib/asf/asfattribute.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/taglib/asf/asfattribute.cpp b/taglib/asf/asfattribute.cpp index 75206452..ca31c6d9 100644 --- a/taglib/asf/asfattribute.cpp +++ b/taglib/asf/asfattribute.cpp @@ -250,6 +250,7 @@ int ASF::Attribute::dataSize() const case BytesType: if(d->pictureValue.isValid()) return d->pictureValue.dataSize(); + break; case GuidType: return d->byteVectorValue.size(); }