Browse Source

Fix for Jpeg Metadata Decoding with unknown APP13 profile

pull/1931/head
mkehoe 4 years ago
parent
commit
76d9412416
No known key found for this signature in database GPG Key ID: 427B20880DCD7347
  1. 5
      src/ImageSharp/Formats/Jpeg/JpegDecoderCore.cs

5
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>

Loading…
Cancel
Save