mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-26 09:58:20 +01:00
fix uninitialized variable
This commit is contained in:
parent
4f0f3576ff
commit
421e2a4ae3
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ CidInfo*
|
|||
CRefMgr::getMakeCookieRef( const char* const connName, bool* isDead )
|
||||
{
|
||||
CookieRef* cref = NULL;
|
||||
CidInfo* cinfo;
|
||||
CidInfo* cinfo = NULL;
|
||||
char curCookie[MAX_INVITE_LEN+1];
|
||||
int curLangCode;
|
||||
int nPlayersT = 0;
|
||||
|
|
Loading…
Reference in a new issue