From 6ccaafe2d93dd2bfce26493acf0524c4518799e7 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Tue, 23 Oct 2018 12:33:13 +0200 Subject: [PATCH] Fixed default return value for fastpath_send_multiple_input_pdu --- libfreerdp/core/fastpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfreerdp/core/fastpath.c b/libfreerdp/core/fastpath.c index 93186f60c..b3b3293b8 100644 --- a/libfreerdp/core/fastpath.c +++ b/libfreerdp/core/fastpath.c @@ -909,7 +909,7 @@ wStream* fastpath_input_pdu_init(rdpFastPath* fastpath, BYTE eventFlags, BYTE ev BOOL fastpath_send_multiple_input_pdu(rdpFastPath* fastpath, wStream* s, int iNumEvents) { - BOOL rc; + BOOL rc = FALSE; rdpRdp* rdp; UINT16 length; BYTE eventHeader;