View | Details | Raw Unified | Return to issue 114410
Collapse All | Expand All

(-)idlc/source/preproc/tokens.c (-1 / +1 lines)
Lines 477-483 Link Here
477
            if (write(1, wbuf, OBS) != OBS)
477
            if (write(1, wbuf, OBS) != OBS)
478
                error(ERROR, "short write!");
478
                error(ERROR, "short write!");
479
            if (wbp > &wbuf[OBS])
479
            if (wbp > &wbuf[OBS])
480
                memcpy(wbuf, wbuf + OBS, wbp - &wbuf[OBS]);
480
                memmove(wbuf, wbuf + OBS, wbp - &wbuf[OBS]);
481
            wbp -= OBS;
481
            wbp -= OBS;
482
        }
482
        }
483
    }
483
    }

Return to issue 114410