소스 검색

RawReadString is limited to length of shortstring, don't read more than that

Margers 11 달 전
부모
커밋
f0257e8424
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      packages/rtl-console/src/unix/keyboard.pp

+ 1 - 0
packages/rtl-console/src/unix/keyboard.pp

@@ -1819,6 +1819,7 @@ begin
        ch:=#0;
      if ch<>#0 then
        St:=St+ch;
+     if length(st)=255 then break;
   Until ch=#0;
   RawReadString:=St;
 end;