Browse Source

Merge branch 'master' into js/fix1926

pull/1933/head
James Jackson-South 4 years ago
committed by GitHub
parent
commit
bb09134478
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

@ -790,6 +790,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