mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:47:56 +02:00
* always return error in SysUtils.FindFirst and .FindNext on the WASI platform,
in order to prevent infinite loops in tests
This commit is contained in:
parent
6f88919f37
commit
77ca8ba16d
@ -132,11 +132,15 @@ end;
|
||||
|
||||
Function InternalFindFirst (Const Path : RawByteString; Attr : Longint; out Rslt : TAbstractSearchRec; var Name: RawByteString) : Longint;
|
||||
begin
|
||||
{ not yet implemented }
|
||||
Result := -1;
|
||||
end;
|
||||
|
||||
|
||||
Function InternalFindNext (var Rslt : TAbstractSearchRec; var Name : RawByteString) : Longint;
|
||||
begin
|
||||
{ not yet implemented }
|
||||
Result := -1;
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user