From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] libjpeg: Update to version 3.0.4
Date: Tue, 19 Nov 2024 22:10:58 +0100 [thread overview]
Message-ID: <20241119211106.2194373-10-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20241119211106.2194373-1-adolf.belka@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 4048 bytes --]
- Update from version 3.0.3 to 3.0.4
- Update of rootfile not required
- Changelog
3.0.4
1. Fixed an issue whereby the CPU usage of the default marker processor in the
decompressor grew exponentially with the number of markers. This caused an
unreasonable slow-down in `jpeg_read_header()` if an application called
`jpeg_save_markers()` to save markers of a particular type and then attempted
to decompress a JPEG image containing an excessive number of markers of that
type.
2. Hardened the default marker processor in the decompressor to guard against
an issue (exposed by 3.0 beta2[6]) whereby attempting to decompress a
specially-crafted malformed JPEG image (specifically an image with a complete
12-bit-per-sample Start Of Frame segment followed by an incomplete
8-bit-per-sample Start Of Frame segment) using buffered-image mode and input
prefetching caused a segfault if the `fill_input_buffer()` method in the
calling application's custom source manager incorrectly returned `FALSE` in
response to a prematurely-terminated JPEG data stream.
3. Fixed an issue in cjpeg whereby, when generating a 12-bit-per-sample or
16-bit-per-sample lossless JPEG image, specifying a point transform value
greater than 7 resulted in an error ("Invalid progressive/lossless parameters")
unless the `-precision` option was specified before the `-lossless` option.
4. Fixed a regression introduced by 3.0.3[3] that made it impossible for
calling applications to generate 12-bit-per-sample arithmetic-coded lossy JPEG
images using the TurboJPEG API.
5. Fixed an error ("Destination buffer is not large enough") that occurred when
attempting to generate a full-color lossless JPEG image using the TurboJPEG
Java API's `byte[] TJCompressor.compress()` method if the value of
`TJ.PARAM_SUBSAMP` was not `TJ.SAMP_444`.
6. Fixed a segfault in djpeg that occurred if a negative width was specified
with the `-crop` option. Since the cropping region width was read into an
unsigned 32-bit integer, a negative width was interpreted as a very large
value. With certain negative width and positive left boundary values, the
bounds checks in djpeg and `jpeg_crop_scanline()` overflowed and did not detect
the out-of-bounds width, which caused a buffer overrun in the upsampling or
color conversion routine. Both bounds checks now use 64-bit integers to guard
against overflow, and djpeg now checks for negative numbers when it parses the
crop specification from the command line.
7. Fixed an issue whereby the TurboJPEG lossless transformation function and
methods checked the specified cropping region against the source image
dimensions and level of chrominance subsampling rather than the destination
image dimensions and level of chrominance subsampling, which caused some
cropping regions to be unduly rejected when performing 90-degree rotation,
270-degree rotation, transposition, transverse transposition, or grayscale
conversion.
8. Fixed an issue whereby the TurboJPEG lossless transformation function and
methods did not honor `TJXOPT_COPYNONE`/`TJTransform.OPT_COPYNONE` unless it
was specified for all lossless transforms.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/libjpeg | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/libjpeg b/lfs/libjpeg
index 311ce4bc9..b835bff29 100644
--- a/lfs/libjpeg
+++ b/lfs/libjpeg
@@ -24,7 +24,7 @@
include Config
-VER = 3.0.3
+VER = 3.0.4
THISAPP = libjpeg-turbo-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 9d141dadd0dce970bf857b51352c57a8e15180438abd7d6d66f9dfd24e23889add8c6c89120b84026e40ab61611516b0567984bd1db37e9c45b41917cf32e9a6
+$(DL_FILE)_BLAKE2 = cf951582ce7cdf0dce39075bb1cc58f6a61fa0bdaca4874a4f06a03d2cd11775bc626c8d391d4fc76574d302a781ba47e5c90e2aa2d6a21a8b8d06712437e241
install : $(TARGET)
--
2.47.0
next prev parent reply other threads:[~2024-11-19 21:10 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-19 21:10 [PATCH] json-c: Update to version 0.18 Adolf Belka
2024-11-19 21:10 ` [PATCH] kmod: Update to version 33 Adolf Belka
2024-11-19 21:10 ` [PATCH] knot: Update to version 3.4.2 Adolf Belka
2024-11-19 21:10 ` [PATCH] krb5: Update to version 1.21.3 Adolf Belka
2024-11-19 21:10 ` [PATCH] less: Update to version 668 Adolf Belka
2024-11-19 21:10 ` [PATCH] libarchive: Update to version 3.7.7 Adolf Belka
2024-11-19 21:10 ` [PATCH] libcap: Update to version 2.72 Adolf Belka
2024-11-19 21:10 ` [PATCH] libedit: Update to version 20240808-3.1 Adolf Belka
2024-11-19 21:10 ` [PATCH] libgpg-error: Update to version 1.51 Adolf Belka
2024-11-19 21:10 ` Adolf Belka [this message]
2024-11-19 21:10 ` [PATCH] libnl-3: Update to version 3.11.0 Adolf Belka
2024-11-19 21:11 ` [PATCH] liboping: Update to version 1.10.0 Adolf Belka
2024-11-19 21:11 ` [PATCH] libpcap: Update to version 1.10.5 Adolf Belka
2024-11-19 21:11 ` [PATCH] libpipeline: Update to version 1.5.8 Adolf Belka
2024-11-19 21:11 ` [PATCH] libtirpc: Update to version 1.3.6 Adolf Belka
2024-11-19 21:11 ` [PATCH] libtool: Update to version 2.5.3 Adolf Belka
2024-11-19 21:11 ` [PATCH] libuv: Update to version 1.49.2 Adolf Belka
2024-11-19 21:11 ` [PATCH] libxml2: Update to version 2.13.5 Adolf Belka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241119211106.2194373-10-adolf.belka@ipfire.org \
--to=adolf.belka@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox