[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.
This commit is contained in:
Armin Novak
2023-08-21 15:24:46 +02:00
committed by akallabeth
parent 68b1614b66
commit 3cfa4ed6f2

View File

@@ -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;