From 9acf6a4b630ce6f9df2101960600507d90be788f Mon Sep 17 00:00:00 2001 From: Steven Van Dorp Date: Thu, 12 Jun 2025 12:24:40 +0200 Subject: [PATCH] ephyr: explicitly zero-initialize ephyrCursorScreen Signed-off-by: Steven Van Dorp --- hw/kdrive/ephyr/ephyr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/kdrive/ephyr/ephyr.c b/hw/kdrive/ephyr/ephyr.c index 2e0855c28..668322f8c 100644 --- a/hw/kdrive/ephyr/ephyr.c +++ b/hw/kdrive/ephyr/ephyr.c @@ -820,7 +820,7 @@ ephyrCrossScreen(ScreenPtr pScreen, Bool entering) { } -ScreenPtr ephyrCursorScreen; /* screen containing the cursor */ +ScreenPtr ephyrCursorScreen = NULL; /* screen containing the cursor */ static void ephyrWarpCursor(DeviceIntPtr pDev, ScreenPtr pScreen, int x, int y)