Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mutter for openSUSE:Factory checked in at 2022-05-18 13:12:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mutter (Old) and /work/SRC/openSUSE:Factory/.mutter.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mutter" Wed May 18 13:12:43 2022 rev:185 rq:977656 version:42.1 Changes: -------- --- /work/SRC/openSUSE:Factory/mutter/mutter.changes 2022-05-08 21:52:51.675501538 +0200 +++ /work/SRC/openSUSE:Factory/.mutter.new.1538/mutter.changes 2022-05-18 13:12:44.190638676 +0200 @@ -1,0 +2,6 @@ +Fri May 13 08:22:15 UTC 2022 - Xiaoguang Wang <xiaoguang.w...@suse.com> + +- Add mutter-crash-meta_context_terminate.patch: Fix SIGSEGV in + meta_context_terminate (bsc#1199382 glgo#GNOME/mutter#2267). + +------------------------------------------------------------------- New: ---- mutter-crash-meta_context_terminate.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mutter.spec ++++++ --- /var/tmp/diff_new_pack.po2T6i/_old 2022-05-18 13:12:44.906639306 +0200 +++ /var/tmp/diff_new_pack.po2T6i/_new 2022-05-18 13:12:44.914639314 +0200 @@ -38,6 +38,8 @@ Patch1: mutter-disable-cvt-s390x.patch # PATCH-FIX-OPENSUSE mutter-window-actor-Special-case-shaped-Java-windows.patch -- window-actor: Special-case shaped Java windows Patch2: mutter-window-actor-Special-case-shaped-Java-windows.patch +# PATCH-FIX-UPSTREAM mutter-crash-meta_context_terminate.patch bsc#1199382 glgo#GNOME/mutter#2267 xw...@suse.com -- Fix SIGSEGV in meta_context_terminate +Patch3: mutter-crash-meta_context_terminate.patch ## SLE-only patches start at 1000 # PATCH-FEATURE-SLE mutter-SLE-bell.patch FATE#316042 bnc#889218 idon...@suse.com -- make audible bell work out of the box. @@ -145,6 +147,7 @@ %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 # SLE-only patches and translations. %if 0%{?sle_version} ++++++ mutter-crash-meta_context_terminate.patch ++++++ Index: mutter-42.1/src/x11/session.c =================================================================== --- mutter-42.1.orig/src/x11/session.c +++ mutter-42.1/src/x11/session.c @@ -113,7 +113,8 @@ process_ice_messages (GIOChannel *chan * being cleaned up, since it is owned by libSM. */ disconnect (); - meta_context_terminate (ice_connection->context); + if (ice_connection->context != NULL) + meta_context_terminate (ice_connection->context); return FALSE; } Index: mutter-42.1/src/tests/meson.build =================================================================== --- mutter-42.1.orig/src/tests/meson.build +++ mutter-42.1/src/tests/meson.build @@ -35,6 +35,7 @@ tests_deps = [ ] libmutter_test = shared_library(libmutter_test_name, + mutter_enum_types, mutter_test_sources, gnu_symbol_visibility: 'hidden', include_directories: tests_includes,