Projects
openEuler:24.03:SP1:Everything
xorg-x11-server
_service:tar_scm:backport-0003-CVE-2023-5574.patch
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File _service:tar_scm:backport-0003-CVE-2023-5574.patch of Package xorg-x11-server
From ab2c58ba4719fc31c19c7829b06bdba8a88bd586 Mon Sep 17 00:00:00 2001 From: Peter Hutterer <peter.hutterer@who-t.net> Date: Tue, 24 Oct 2023 12:09:36 +1000 Subject: [PATCH] dix: always initialize pScreen->CloseScreen CloseScreen is wrapped by the various modules, many of which do not check if they're the last ones unwrapping. This is fine if the order of those modules never changes but when it does we might get a NULL-pointer dereference by some naive code doing a pScreen->CloseScreen = priv->CloseScreen; free(priv); return (*pScreen->CloseScreen)(pScreen); To avoid this set it to a default function that just returns TRUE that's guaranteed to be the last one. --- dix/dispatch.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dix/dispatch.c b/dix/dispatch.c index eaac39b7c9..cd092fd409 100644 --- a/dix/dispatch.c +++ b/dix/dispatch.c @@ -3890,6 +3890,12 @@ static int indexForScanlinePad[65] = { 3 /* 64 bits per scanline pad unit */ }; +static Bool +DefaultCloseScreen(ScreenPtr screen) +{ + return TRUE; +} + /* grow the array of screenRecs if necessary. call the device-supplied initialization procedure @@ -3949,6 +3955,9 @@ static int init_screen(ScreenPtr pScreen, int i, Bool gpu) PixmapWidthPaddingInfo[depth].notPower2 = 0; } } + + pScreen->CloseScreen = DefaultCloseScreen; + return 0; } -- GitLab
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2