From 39654aef294857479e3d875c55a7adf412b481a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C3=85strand?= Date: Mon, 20 Mar 2006 16:14:02 +0000 Subject: [PATCH] SeamlessRDP: Initializing all of sw->outpos_ variables. git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/branches/seamlessrdp-branch/rdesktop@1173 423420c4-83ab-492f-b58f-81f9feb106b5 --- xwin.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xwin.c b/xwin.c index 1c24a5c..f212848 100644 --- a/xwin.c +++ b/xwin.c @@ -3305,7 +3305,12 @@ ui_seamless_create_window(unsigned long id, unsigned long parent, unsigned long sw->desktop = 0; sw->position_timer = xmalloc(sizeof(struct timeval)); timerclear(sw->position_timer); + sw->outstanding_position = False; + sw->outpos_serial = 0; + sw->outpos_xoffset = sw->outpos_yoffset = 0; + sw->outpos_width = sw->outpos_height = 0; + sw->next = g_seamless_windows; g_seamless_windows = sw; }