Browse Source
Fix for Jpeg Metadata Decoding with unknown APP13 profile
pull/1931/head
mkehoe
4 years ago
No known key found for this signature in database
GPG Key ID: 427B20880DCD7347
1 changed files with
5 additions and
0 deletions
-
src/ImageSharp/Formats/Jpeg/JpegDecoderCore.cs
|
|
|
@ -788,6 +788,11 @@ namespace SixLabors.ImageSharp.Formats.Jpeg |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
// If the profile is unknown skip over the rest of it.
|
|
|
|
stream.Skip(remaining); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|