Changeset 3191 for trunk/src/kmk/w32


Ignore:
Timestamp:
Mar 26, 2018, 11:16:06 AM (7 years ago)
Author:
bird
Message:

kmk/output: Memory buffering fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/w32/winchildren.c

    r3190 r3191  
    677677        /* Move offPendingRead ahead by cbRead. */
    678678        pPipe->offPendingRead += cbNewData;
    679         assert(pPipe->offPendingRead < pPipe->cbBuffer);
     679        assert(pPipe->offPendingRead <= pPipe->cbBuffer);
    680680        if (pPipe->offPendingRead > pPipe->cbBuffer)
    681681            pPipe->offPendingRead = pPipe->cbBuffer;
Note: See TracChangeset for help on using the changeset viewer.