import pango-1.42.4-6.el8

This commit is contained in:
CentOS Sources 2020-01-21 18:20:06 -05:00 committed by Stepan Oksanichenko
parent c3ac14ffb4
commit e038affe2b
2 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,29 @@
commit 490f8979a260c16b1df055eab386345da18a2d54
Author: Matthias Clasen <mclasen@redhat.com>
Date: Wed Jul 10 20:26:23 2019 -0400
bidi: Be safer against bad input
Don't run off the end of an array that we
allocated to certain length.
Closes: https://gitlab.gnome.org/GNOME/pango/issues/342
diff --git a/pango/pango-bidi-type.c b/pango/pango-bidi-type.c
index 3e46b66c..5c02dbbb 100644
--- a/pango/pango-bidi-type.c
+++ b/pango/pango-bidi-type.c
@@ -181,8 +181,11 @@ pango_log2vis_get_embedding_levels (const gchar *text,
for (i = 0, p = text; p < text + length; p = g_utf8_next_char(p), i++)
{
gunichar ch = g_utf8_get_char (p);
- FriBidiCharType char_type;
- char_type = fribidi_get_bidi_type (ch);
+ FriBidiCharType char_type = fribidi_get_bidi_type (ch);
+
+ if (i == n_chars)
+ break;
+
bidi_types[i] = char_type;
ored_types |= char_type;
if (FRIBIDI_IS_STRONG (char_type))

View File

@ -9,13 +9,14 @@
Name: pango
Version: 1.42.4
Release: 4%{?dist}
Release: 6%{?dist}
Summary: System for layout and rendering of internationalized text
License: LGPLv2+
URL: http://www.pango.org
Source0: http://download.gnome.org/sources/%{name}/1.42/%{name}-%{version}.tar.xz
Patch0: pango-fixes-get-variations-crash.patch
Patch1: pango-fixes-bidi-crash.patch
BuildRequires: pkgconfig(cairo) >= %{cairo_version}
BuildRequires: pkgconfig(freetype2) >= %{freetype_version}
@ -77,6 +78,7 @@ the functionality of the installed %{name} package.
%prep
%setup -q -n pango-%{version}
%patch0 -p1 -b .crash
%patch1 -p1 -b .bidi
%build
@ -130,6 +132,15 @@ fi
%changelog
* Tue Aug 20 2019 Peng Wu <pwu@redhat.com> - 1.42.4-6
- Rebuild
- Resolves: #1738462
* Fri Aug 16 2019 Peng Wu <pwu@redhat.com> - 1.42.4-5
- Fixes bidi crash
- Security fix for CVE-2019-1010238
- Resolves: #1738462
* Fri Apr 12 2019 Peng Wu <pwu@redhat.com> - 1.42.4-4
- Fixes crash in pango_fc_font_key_get_variations when key is null
- Resolves: #1685811