Community
Participate
Working Groups
/* If the whole record doesn't fit in this buffer then allocate a temporary
buffer for the record and copy the part that is included in this buffer
into the temp bufer*/
if (offset + OSS_RAMBO_DATA_HEADER_SIZE + recordLength >= dataLength) {
if (offset + OSS_RAMBO_DATA_HEADER_SIZE + recordLength > dataLength) {
continueDataSize = offset + OSS_RAMBO_DATA_HEADER_SIZE + recordLength - dataLength;
bFlushLen = dataLength - offset;