fix CVE-2026-23868: double free in GifMakeSavedImage (RHEL-154850)
Resolves: RHEL-154850
This commit is contained in:
parent
f80c98b0b9
commit
d89838bd0a
@ -3,4 +3,4 @@ product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.rpmdeplint.functional}
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||
|
||||
18
giflib-5.2.1-cve-2026-23868.patch
Normal file
18
giflib-5.2.1-cve-2026-23868.patch
Normal file
@ -0,0 +1,18 @@
|
||||
--- a/gifalloc.c
|
||||
+++ b/gifalloc.c
|
||||
@@ -349,6 +349,14 @@
|
||||
* problems.
|
||||
*/
|
||||
|
||||
+ /* Null out aliased pointers before any allocations
|
||||
+ * so that FreeLastSavedImage won't free CopyFrom's
|
||||
+ * data if an allocation fails partway through. */
|
||||
+ sp->ImageDesc.ColorMap = NULL;
|
||||
+ sp->RasterBits = NULL;
|
||||
+ sp->ExtensionBlocks = NULL;
|
||||
+ sp->ExtensionBlockCount = 0;
|
||||
+
|
||||
/* first, the local color map */
|
||||
if (CopyFrom->ImageDesc.ColorMap != NULL) {
|
||||
sp->ImageDesc.ColorMap = GifMakeMapObject(
|
||||
|
||||
10
giflib.spec
10
giflib.spec
@ -1,7 +1,7 @@
|
||||
Name: giflib
|
||||
Summary: A library and utilities for processing GIFs
|
||||
Version: 5.2.1
|
||||
Release: 22%{?dist}
|
||||
Release: 23%{?dist}
|
||||
|
||||
License: MIT
|
||||
URL: http://www.sourceforge.net/projects/%{name}/
|
||||
@ -21,6 +21,9 @@ Patch3: CVE-2022-28506.patch
|
||||
# Taken from Debian package
|
||||
Patch4: fix-get-args-segment-violation.patch
|
||||
Patch5: giflib-5.2.1-fixsnprintf.patch
|
||||
# from upstream, for <= 6.1.1, RHEL-154850
|
||||
# https://sourceforge.net/p/giflib/code/ci/f5b7267aed3665ef025c13823e454170d031c106/
|
||||
Patch6: giflib-5.2.1-cve-2026-23868.patch
|
||||
|
||||
|
||||
BuildRequires: cmake
|
||||
@ -108,6 +111,8 @@ cp -a %{SOURCE1} .
|
||||
%mingw_cmake
|
||||
%mingw_make_build
|
||||
|
||||
# remove extra index.html.in
|
||||
rm doc/index.html.in
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
@ -153,6 +158,9 @@ rm -rf %{buildroot}%{mingw64_mandir}
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Mar 19 2026 Michal Hlavinka <mhlavink@redhat.com> - 5.2.1-23
|
||||
- fix CVE-2026-23868: double free in GifMakeSavedImage (RHEL-154850)
|
||||
|
||||
* Thu Feb 06 2025 Michal Hlavinka <mhlavink@redhat.com> - 5.2.1-22
|
||||
- fix giftext memmory access error (RHEL-77803)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user