[core,update] do not require EndPaint callback

Some RDP servers start sending graphics updates too early for us to
process. This triggered a bug that at that point the EndPaint callback
is not available, as the connection is not fully established.
This commit is contained in:
Armin Novak
2022-11-30 08:37:59 +01:00
committed by Martin Fleisz
parent d59c0a49c3
commit 31827485a8

View File

@@ -3322,7 +3322,7 @@ BOOL update_begin_paint(rdpUpdate* update)
BOOL update_end_paint(rdpUpdate* update)
{
BOOL rc = FALSE;
BOOL rc = TRUE;
if (!update)
return FALSE;