Fixed default return for DrawOrderInfo

(cherry picked from commit 4587ef976c)
This commit is contained in:
akallabeth 2021-01-28 14:08:35 +01:00 committed by akallabeth
parent 66f13a3ea4
commit 176893e6da

View File

@ -3686,7 +3686,7 @@ static BOOL update_recv_secondary_order(rdpUpdate* update, wStream* s, BYTE flag
start = Stream_GetPosition(s);
name = secondary_order_string(orderType);
WLog_Print(update->log, WLOG_DEBUG, "Secondary Drawing Order %s", name);
rc = IFCALLRESULT(FALSE, secondary->CacheOrderInfo, context, orderLength, extraFlags, orderType,
rc = IFCALLRESULT(TRUE, secondary->CacheOrderInfo, context, orderLength, extraFlags, orderType,
name);
if (!rc)
return FALSE;