From ab64197ac4e7fce9b563214ff0c8f3ec6ffafae8 Mon Sep 17 00:00:00 2001 From: Eric House Date: Tue, 23 Sep 2014 07:30:23 -0700 Subject: [PATCH] fix recent booboo: it's not an error for server_initClientConnection() to fail here. --- xwords4/linux/linuxmain.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xwords4/linux/linuxmain.c b/xwords4/linux/linuxmain.c index 26d0f6da8..295895cdf 100644 --- a/xwords4/linux/linuxmain.c +++ b/xwords4/linux/linuxmain.c @@ -1439,8 +1439,7 @@ linuxChangeRoles( CommonGlobals* cGlobals ) XWStreamCtxt* stream = mem_stream_make( MPPARM(cGlobals->util->mpool) cGlobals->params->vtMgr, cGlobals, CHANNEL_NONE, sendOnClose ); - XP_Bool done = server_initClientConnection( server, stream ); - XP_ASSERT( !done ); + (void)server_initClientConnection( server, stream ); } (void)server_do( server ); }