浏览代码

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;