From: akallabeth Date: Thu, 28 Jan 2021 13:08:35 +0000 (+0100) Subject: Fixed default return for DrawOrderInfo X-Git-Tag: 2.3.0~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=176893e6daab96d94d21052f8ad592b31bba45c5;p=platform%2Fupstream%2Ffreerdp.git Fixed default return for DrawOrderInfo (cherry picked from commit 4587ef976c07a06f9fe751e2857bddea2a6e9a69) --- diff --git a/libfreerdp/core/orders.c b/libfreerdp/core/orders.c index 216191d..0e14bbe 100644 --- a/libfreerdp/core/orders.c +++ b/libfreerdp/core/orders.c @@ -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;