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