diff options
Diffstat (limited to 'z02.c')
-rw-r--r-- | z02.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -379,7 +379,7 @@ static void srcnext(void) if( blksize != 0 && chpt < limit ) { debugcond0(DLA, DD, stack_free <= 1, "srcnext: transferring."); col = buf; - while( chtbl[(*--col = *--limit)] != NEWLINE ); + while( col > mem_block && chtbl[(*--col = *--limit)] != NEWLINE ); frst = col + 1; limit++; blksize = 0; } |