Compare commits
No commits in common. "c8s" and "c8-beta" have entirely different histories.
@ -1 +0,0 @@
|
|||||||
1
|
|
||||||
1
.giflib.metadata
Normal file
1
.giflib.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
5f1157cfc377916280849e247b8e34fa0446513f SOURCES/giflib-5.1.4.tar.bz2
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/giflib-5.1.4.tar.bz2
|
SOURCES/giflib-5.1.4.tar.bz2
|
||||||
/giflib-5.1.4.tar.bz2
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
Name: giflib
|
Name: giflib
|
||||||
Summary: A library and utilities for processing GIFs
|
Summary: A library and utilities for processing GIFs
|
||||||
Version: 5.1.4
|
Version: 5.1.4
|
||||||
Release: 4%{?dist}
|
Release: 3%{?dist}
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://www.sourceforge.net/projects/%{name}/
|
URL: http://www.sourceforge.net/projects/%{name}/
|
||||||
@ -9,9 +9,6 @@ Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.b
|
|||||||
|
|
||||||
Patch0: giflib-5.1.4-coverity.patch
|
Patch0: giflib-5.1.4-coverity.patch
|
||||||
Patch1: giflib-5.1.4-html-docs-consistent-ids.patch
|
Patch1: giflib-5.1.4-html-docs-consistent-ids.patch
|
||||||
# from upstream, for <= 6.1.1, RHEL-154853
|
|
||||||
# https://sourceforge.net/p/giflib/code/ci/f5b7267aed3665ef025c13823e454170d031c106/
|
|
||||||
Patch2: giflib-5.1.8-cve-2026-23868.patch
|
|
||||||
|
|
||||||
BuildRequires: autoconf automake libtool
|
BuildRequires: autoconf automake libtool
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
@ -82,9 +79,6 @@ rm -f doc/Makefile*
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Mar 24 2026 Michal Hlavinka <mhlavink@redhat.com> - 5.1.4-4
|
|
||||||
- fix CVE-2026-23868: double free in GifMakeSavedImage (RHEL-154853)
|
|
||||||
|
|
||||||
* Thu Nov 08 2018 Nikola Forró <nforro@redhat.com> - 5.1.4-3
|
* Thu Nov 08 2018 Nikola Forró <nforro@redhat.com> - 5.1.4-3
|
||||||
- Generate HTML docs with consistent section IDs to avoid multilib difference
|
- Generate HTML docs with consistent section IDs to avoid multilib difference
|
||||||
related: #1602513
|
related: #1602513
|
||||||
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-8
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
--- a/lib/gifalloc.c
|
|
||||||
+++ b/lib/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 (sp->ImageDesc.ColorMap != NULL) {
|
|
||||||
sp->ImageDesc.ColorMap = GifMakeMapObject(
|
|
||||||
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
summary: Internal Tier1 tests plan
|
|
||||||
discover:
|
|
||||||
how: fmf
|
|
||||||
filter: 'tier: 1'
|
|
||||||
url: https://pkgs.devel.redhat.com/git/tests/libtiff
|
|
||||||
execute:
|
|
||||||
how: tmt
|
|
||||||
adjust:
|
|
||||||
enabled: false
|
|
||||||
when: distro == centos-stream or distro == fedora
|
|
||||||
|
|
||||||
@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
summary: Tier1 plan for giflib
|
|
||||||
|
|
||||||
discover:
|
|
||||||
how: fmf
|
|
||||||
url: https://pkgs.devel.redhat.com/git/tests/giflib
|
|
||||||
ref: master
|
|
||||||
filter: tier:1
|
|
||||||
|
|
||||||
execute:
|
|
||||||
how: tmt
|
|
||||||
|
|
||||||
adjust:
|
|
||||||
enabled: false
|
|
||||||
when: distro == centos-stream or distro == fedora
|
|
||||||
Loading…
Reference in New Issue
Block a user