Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2024-01-10 21:51:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old)
 and      /work/SRC/openSUSE:Factory/.xorg-x11-server.new.21961 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xorg-x11-server"

Wed Jan 10 21:51:05 2024 rev:423 rq:1137765 version:21.1.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2024-01-07 21:39:12.109617278 +0100
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-server.new.21961/xorg-x11-server.changes   
    2024-01-10 21:51:15.749931342 +0100
@@ -1,0 +2,8 @@
+Sat Jan  6 20:01:20 UTC 2024 - Stefan Dirsch <sndir...@suse.com>
+
+- u_miCloseScreen_check_for_null_pScreen_dev_private.patch
+  * miCloseScreen check for null pScreen dev private (bsc#1218176); 
+    another regression introduced by 
+    U_bsc1216261-0002-fb-properly-wrap-unwrap-CloseScreen.patch
+
+-------------------------------------------------------------------

New:
----
  u_miCloseScreen_check_for_null_pScreen_dev_private.patch

BETA DEBUG BEGIN:
  New:
- u_miCloseScreen_check_for_null_pScreen_dev_private.patch
  * miCloseScreen check for null pScreen dev private (bsc#1218176); 
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xorg-x11-server.spec ++++++
--- /var/tmp/diff_new_pack.ax56Mk/_old  2024-01-10 21:51:17.001976810 +0100
+++ /var/tmp/diff_new_pack.ax56Mk/_new  2024-01-10 21:51:17.001976810 +0100
@@ -246,6 +246,8 @@
 Patch1217765:   
U_bsc1217765-Xi-allocate-enough-XkbActions-for-our-buttons.patch
 Patch1217766:   
U_bsc1217766-randr-avoid-integer-truncation-in-length-check-of-Pr.patch
 
+Patch1218176:   u_miCloseScreen_check_for_null_pScreen_dev_private.patch
+
 %description
 This package contains the X.Org Server.
 
@@ -407,6 +409,8 @@
 %patch1217765 -p1
 %patch1217766 -p1
 
+%patch1218176 -p1
+
 %build
 # We have some -z now related errors during X default startup (boo#1197994):
 # - when loading modesetting: gbm_bo_get_plane_count

++++++ u_miCloseScreen_check_for_null_pScreen_dev_private.patch ++++++
 mi/miscrinit.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
Index: xorg-server-21.1.4/mi/miscrinit.c
===================================================================
--- xorg-server-21.1.4.orig/mi/miscrinit.c
+++ xorg-server-21.1.4/mi/miscrinit.c
@@ -121,7 +121,9 @@ miModifyPixmapHeader(PixmapPtr pPixmap,
 static Bool
 miCloseScreen(ScreenPtr pScreen)
 {
-    return ((*pScreen->DestroyPixmap) ((PixmapPtr) pScreen->devPrivate));
+    if (pScreen->devPrivate)
+        return ((*pScreen->DestroyPixmap) ((PixmapPtr) pScreen->devPrivate));
+    return TRUE;
 }
 
 static Bool

Reply via email to