Skip to content

Commit f4c076e

Browse files
mskurnikdecriptor
authored andcommitted
Mitigated infinite loop with ID3v2 tag failure (#168)
* #162 - Fixed infinite loop with corrupt ID3v2 tag. * Fixed the line endings. * Revert "Fixed the line endings." This reverts commit 88c2155. * Revert "#162 - Fixed infinite loop with corrupt ID3v2 tag." This reverts commit 5f9488d. * Reverted line ending change.
1 parent e79dcc8 commit f4c076e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TaglibSharp/Id3v2/Tag.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ protected void Parse (ByteVector data, File file, long position, ReadStyle style
926926
} catch (NotImplementedException) {
927927
continue;
928928
} catch (CorruptFileException) {
929-
continue;
929+
throw;
930930
}
931931

932932
if (frame == null)

0 commit comments

Comments
 (0)