mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-06 20:45:54 +01:00
log rather than assert
This commit is contained in:
parent
06bc80fcc9
commit
a9b459ea2e
1 changed files with 4 additions and 1 deletions
|
@ -1092,7 +1092,10 @@ handleProxyMsgs( int sock, const AddrInfo* addr, const unsigned char* bufp,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert( bufp == end ); // don't ship with this!!!
|
if ( bufp != end ) {
|
||||||
|
logf( XW_LOGERROR, "%s: buf != end: %p vs %p", __func__, bufp, end );
|
||||||
|
}
|
||||||
|
// assert( bufp == end ); // don't ship with this!!!
|
||||||
}
|
}
|
||||||
} // handleProxyMsgs
|
} // handleProxyMsgs
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue