You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
From ddde652460350b962d32036981ff8ed77ed2f1ed Mon Sep 17 00:00:00 2001
|
|
From: Armin Novak <armin.novak@thincast.com>
|
|
Date: Wed, 16 Sep 2020 09:30:37 +0200
|
|
Subject: [PATCH] Fix variable declaration in loop
|
|
|
|
[Retrieved from:
|
|
https://github.com/FreeRDP/FreeRDP/commit/ddde652460350b962d32036981ff8ed77ed2f1ed]
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
---
|
|
client/X11/xf_graphics.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/client/X11/xf_graphics.c b/client/X11/xf_graphics.c
|
|
index 76fbef5bd6..bf71b563c3 100644
|
|
--- a/client/X11/xf_graphics.c
|
|
+++ b/client/X11/xf_graphics.c
|
|
@@ -386,6 +386,7 @@ static BOOL xf_Pointer_New(rdpContext* context, rdpPointer* pointer)
|
|
static void xf_Pointer_Free(rdpContext* context, rdpPointer* pointer)
|
|
{
|
|
#ifdef WITH_XCURSOR
|
|
+ UINT32 i;
|
|
xfContext* xfc = (xfContext*)context;
|
|
xfPointer* xpointer = (xfPointer*)pointer;
|
|
|
|
@@ -395,7 +396,7 @@ static void xf_Pointer_Free(rdpContext* context, rdpPointer* pointer)
|
|
free(xpointer->cursorWidths);
|
|
free(xpointer->cursorHeights);
|
|
|
|
- for (int i = 0; i < xpointer->nCursors; i++)
|
|
+ for (i = 0; i < xpointer->nCursors; i++)
|
|
{
|
|
XFreeCursor(xfc->display, xpointer->cursors[i]);
|
|
}
|
|
|