From 22d5818851967408bb7c903cb345b7ca8766094c Mon Sep 17 00:00:00 2001 From: Błażej Szczygieł Date: Thu, 13 Jan 2022 00:47:27 +0100 Subject: present: Check for NULL to prevent crash MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://gitlab.freedesktop.org/xorg/xserver/-/issues/1275 Signed-off-by: Błażej Szczygieł Tested-by: Aaron Plattner --- present/present_scmd.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/present/present_scmd.c b/present/present_scmd.c index da836ea6b..239055bc1 100644 --- a/present/present_scmd.c +++ b/present/present_scmd.c @@ -158,6 +158,9 @@ present_scmd_get_crtc(present_screen_priv_ptr screen_priv, WindowPtr window) if (!screen_priv->info) return NULL; + if (!screen_priv->info->get_crtc) + return NULL; + return (*screen_priv->info->get_crtc)(window); } @@ -196,6 +199,9 @@ present_flush(WindowPtr window) if (!screen_priv->info) return; + if (!screen_priv->info->flush) + return; + (*screen_priv->info->flush) (window); } -- cgit v1.2.3