* add parameter (=0) to getdirentries, hopefully fixes occasional EFAULT loops.

probably the random value of the register caused problems, already in the patch from bug #37220
This commit is contained in:
marcoonthegit 2022-06-19 15:21:42 +02:00
parent 50af4d0388
commit adf1a0642f

View File

@ -188,7 +188,7 @@ const DIRBLKSIZ=1024;
function FpGetdirentries(fd : cint; buf : pchar; nbytes : clong) : cint;
begin
FpGetdirentries:=do_syscall(syscall_nr_getdirentries,fd,TSysParam(buf), nbytes);
FpGetdirentries:=do_syscall(syscall_nr_getdirentries,fd,TSysParam(buf),nbytes,TSysParam(0));
end;
{$endif}