K 10
svn:author
V 7
mibsoft
K 8
svn:date
V 27
1998-05-11T20:54:38.000000Z
K 7
svn:log
V 386
32 bit safe arithmetic when operating close to CNFS buffer size.

Problem reported by Marc Hittinger, who suggested a fix with
some temporary variables.  Instead, I changed the expression to
avoid the problem:
!     if (cycbuff->free + article.len > cycbuff->len - CNFS_BLOCKSIZE - 1) {

changed to:
!     if (article.len > cycbuff->len - cycbuff->free - CNFS_BLOCKSIZE - 1) {

Forrest

END
