Skip to content

Commit

Permalink
Merge branch 'release/4.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Dolski committed Sep 18, 2019
2 parents bb08fa4 + 0ee7c4a commit c5c5a27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Expand Up @@ -57,6 +57,8 @@
filenames containing spaces.
* Fixed two separate bugs in KakaduNativeProcessor that both caused empty
regions to appear in certain images.
* Fixed overly restrictive signature verification in KakaduDemoProcessor and
OpenJpegProcessor that could cause errors with some valid images.
* Fixed TurboJpegProcessor not respecting the `processor.background_color`
configuration key.
* Fixed the `PurgeItemFromCache` API method not working with S3Cache and
Expand Down
Expand Up @@ -113,8 +113,7 @@ private static SegmentMarker forBytes(byte[] twoBytes) {

private static final byte[] JP2_SIGNATURE = new byte[] {
0x00, 0x00, 0x00, 0x0c, 0x6a, 0x50, 0x20, 0x20, 0x0d, 0x0a,
(byte) 0x87, 0x0a, 0x00, 0x00, 0x00, 0x14, 0x66, 0x74, 0x79, 0x70,
0x6a, 0x70, 0x32 };
(byte) 0x87, 0x0a };

private static final byte[] IPTC_UUID = new byte[] {
(byte) 0x33, (byte) 0xc7, (byte) 0xa4, (byte) 0xd2, (byte) 0xb8,
Expand Down

0 comments on commit c5c5a27

Please sign in to comment.