fix for compiler-warning

channels.c:135: warning: `channel' might be used uninitialized in this function


git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@505 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Michael Gernoth 2003-10-19 12:20:38 +00:00
parent 4e95dbd8cd
commit 70ac0848d1

View File

@ -132,7 +132,7 @@ channel_process(STREAM s, uint16 mcs_channel)
{
uint32 length, flags;
uint32 thislength;
VCHANNEL *channel;
VCHANNEL *channel = NULL;
unsigned int i;
STREAM in;