Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
74cc881bac
!80 Fix CVE-2024-6655: Library injection from CWD
From: @fundawang 
Reviewed-by: @yanan-rock 
Signed-off-by: @yanan-rock
2024-07-23 06:20:54 +00:00
Funda Wang
568e71c24f Fix CVE-2024-6655: Library injection from CWD 2024-07-11 23:01:57 +08:00
openeuler-ci-bot
edba6fa0fa
!78 update to 3.24.41
From: @zppzhangpan 
Reviewed-by: @t_feng 
Signed-off-by: @t_feng
2024-02-05 07:23:07 +00:00
zhangpan
5af4d792ec update to 3.24.41 2024-01-25 03:06:56 +00:00
openeuler-ci-bot
2234a632f1
!69 revert delete taboo words commit
From: @zppzhangpan 
Reviewed-by: @t_feng 
Signed-off-by: @t_feng
2024-01-18 07:05:56 +00:00
zhangpan
b5802ca395 revert delete taboo words commit 2024-01-18 03:08:49 +00:00
openeuler-ci-bot
b0d3a3c201
!51 update to 3.24.38
From: @zhouwenpei 
Reviewed-by: @weidongkl 
Signed-off-by: @weidongkl
2023-07-31 08:57:42 +00:00
zhouwenpei
feae99027f update to 3.24.38 2023-07-22 16:49:07 +08:00
openeuler-ci-bot
5bc176bc26
!44 delete taboo words
From: @zppzhangpan 
Reviewed-by: @leeffo 
Signed-off-by: @leeffo
2023-06-15 08:41:46 +00:00
zhangpan
85a0726736 delete taboo words 2023-06-15 08:02:37 +00:00
3 changed files with 54 additions and 3 deletions

View File

@ -0,0 +1,35 @@
From 3bbf0b6176d42836d23c36a6ac410e807ec0a7a7 Mon Sep 17 00:00:00 2001
From: Matthias Clasen <mclasen@redhat.com>
Date: Sat, 15 Jun 2024 14:18:01 -0400
Subject: [PATCH] Stop looking for modules in cwd
This is just not a good idea. It is surprising, and can be misused.
Fixes: #6786
---
gtk/gtkmodules.c | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/gtk/gtkmodules.c b/gtk/gtkmodules.c
index 704e412aeb5..f93101c272e 100644
--- a/gtk/gtkmodules.c
+++ b/gtk/gtkmodules.c
@@ -214,13 +214,8 @@ find_module (const gchar *name)
gchar *module_name;
module_name = _gtk_find_module (name, "modules");
- if (!module_name)
- {
- /* As last resort, try loading without an absolute path (using system
- * library path)
- */
- module_name = g_module_build_path (NULL, name);
- }
+ if (module_name == NULL)
+ return NULL;
module = g_module_open (module_name, G_MODULE_BIND_LOCAL | G_MODULE_BIND_LAZY);
--
GitLab

View File

@ -13,14 +13,15 @@
#Basic Information
Name: gtk3
Version: 3.24.36
Release: 1
Version: 3.24.41
Release: 2
Summary: GTK+ graphical user interface library
License: LGPLv2+
URL: https://www.gtk.org
Source0: https://download.gnome.org/sources/gtk+/3.24/gtk+-%{version}.tar.xz
Patch0: 0001-Let-the-notification-icon-use-the-size-specified-by-.patch
Patch1: backport-gtk+-3.24-CVE-2024-6655.patch
#Dependency
BuildRequires: pkgconfig(atk) >= %{atk_version} pkgconfig(atk-bridge-2.0)
@ -31,7 +32,7 @@ BuildRequires: pkgconfig(xi) pkgconfig(xrandr) pkgconfig(xinerama) pkgconfig(xco
BuildRequires: pkgconfig(xkbcommon) pkgconfig(epoxy) >= %{epoxy_version}
BuildRequires: wayland-devel >= %{wayland_version} wayland-protocols-devel >= %{wayland_protocols_version}
BuildRequires: pkgconfig(colord)
BuildRequires: gettext gtk-doc libtool desktop-file-utils libXcursor-devel meson
BuildRequires: gettext gtk-doc libtool desktop-file-utils libXcursor-devel meson
%if 0%{?openEuler}
BuildRequires: cups-devel
%endif
@ -264,6 +265,21 @@ gtk-query-immodules-3.0-64 --update-cache &>/dev/null || :
%{_mandir}/man1/gtk3-widget-factory.1*
%changelog
* Thu Jul 11 2024 Funda Wang <fundawang@yeah.net> - 3.24.41-2
- Fix CVE-2024-6655: Library injection from CWD
* Thu Jan 25 2024 zhangpan <zhangpan103@h-partners.com> - 3.24.41-1
- update to 3.24.41
* Thu Jan 18 2024 zhangpan <zhangpan103@h-partners.com> - 3.24.38-2
- revert delete taboo words commit
* Sat Jul 22 2023 zhouwenpei <zhouwenpei1@h-partners.com> - 3.24.38-1
- update to 3.24.38
* Thu Jun 15 2023 zhangpan <zhangpan103@h-partners.com> - 3.24.36-2
- delete taboo words
* Mon Jan 02 2023 lin zhang <lin.zhang@turbolinux.com.cn> - 3.24.36-1
- update to 3.24.36