From e1d1e03e000ef196ba61a8fbddd180d9bb38397b Mon Sep 17 00:00:00 2001 From: Erik Forsberg Date: Fri, 28 Mar 2003 09:13:48 +0000 Subject: [PATCH] Initialize some variables in order to avoid a compiler warning. Umm.. A bit ugly. Might remove this later. git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@355 423420c4-83ab-492f-b58f-81f9feb106b5 --- orders.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orders.c b/orders.c index 3c0c35e..04732b8 100644 --- a/orders.c +++ b/orders.c @@ -684,6 +684,8 @@ process_bmpcache(STREAM s) uint16 bufsize, pad2, row_size, final_size; uint8 pad1; + pad2 = row_size = final_size = -1; /* Shut the compiler up */ + in_uint8(s, cache_id); in_uint8(s, pad1); /* pad */ in_uint8(s, width);