mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +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 )
|
CRefMgr::getMakeCookieRef( const char* const connName, bool* isDead )
|
||||||
{
|
{
|
||||||
CookieRef* cref = NULL;
|
CookieRef* cref = NULL;
|
||||||
CidInfo* cinfo;
|
CidInfo* cinfo = NULL;
|
||||||
char curCookie[MAX_INVITE_LEN+1];
|
char curCookie[MAX_INVITE_LEN+1];
|
||||||
int curLangCode;
|
int curLangCode;
|
||||||
int nPlayersT = 0;
|
int nPlayersT = 0;
|
||||||
|
|
Loading…
Reference in a new issue