mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-29 10:26:36 +01:00
fix crash when FIVEWAY not on.
This commit is contained in:
parent
1d29511733
commit
c06df68133
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ palm_bt_doWork( PalmAppGlobals* globals, BtUIState* btUIStateP )
|
|||
PalmBTStuff* btStuff = globals->btStuff;
|
||||
XP_Bool haveWork = !!btStuff && HASWORK(btStuff);
|
||||
|
||||
XP_ASSERT( haveWork
|
||||
XP_ASSERT( !btStuff || haveWork
|
||||
|| (btStuff->vol.out.lens[0] == 0 )
|
||||
|| btStuff->vol.sendInProgress
|
||||
|| (SOCK_INVAL == btStuff->dataSocket)
|
||||
|
|
Loading…
Reference in a new issue