From 3cfa4ed6f29b2cb622df3d65c1354e321fa4ad83 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Mon, 21 Aug 2023 15:24:46 +0200 Subject: [PATCH] [server,shadow] fix initialization of [MS-RDPEGFX] the channel was initialized with handling messages in a thread and handling the channel messages on main thread. fix that. --- server/shadow/shadow_rdpgfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/shadow/shadow_rdpgfx.c b/server/shadow/shadow_rdpgfx.c index d91d752ae..16bb23657 100644 --- a/server/shadow/shadow_rdpgfx.c +++ b/server/shadow/shadow_rdpgfx.c @@ -39,7 +39,7 @@ int shadow_client_rdpgfx_init(rdpShadowClient* client) rdpgfx->custom = client; - if (!IFCALLRESULT(CHANNEL_RC_OK, rdpgfx->Initialize, rdpgfx, FALSE)) + if (!IFCALLRESULT(CHANNEL_RC_OK, rdpgfx->Initialize, rdpgfx, TRUE)) return -1; return 1;