Few LCC memory fixes.
This commit is contained in:
parent
7c2dd01873
commit
76ec9fb6bd
2 changed files with 4 additions and 2 deletions
|
@ -315,7 +315,7 @@ puttokens(Tokenrow *trp)
|
|||
if (wbp >= &wbuf[OBS]) {
|
||||
write(1, wbuf, OBS);
|
||||
if (wbp > &wbuf[OBS])
|
||||
memcpy(wbuf, wbuf+OBS, wbp - &wbuf[OBS]);
|
||||
memmove(wbuf, wbuf+OBS, wbp - &wbuf[OBS]);
|
||||
wbp -= OBS;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue