Browse Source

Merge pull request #1931 from mkehoe/custom-app13-bugfix

Fix for Jpeg Metadata Decoding with unknown APP13 profile
pull/1934/head
James Jackson-South 4 years ago
committed by GitHub
parent
commit
7a5cd86505
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  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