mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-22 14:53:26 +02:00
Corrected fix for bug #902
This commit is contained in:
parent
60ed425f24
commit
ca270f3471
@ -711,7 +711,7 @@ Function FSearch(path : pathstr;dirlist : string) : pathstr;
|
||||
Var
|
||||
info:stat;
|
||||
Begin
|
||||
if FStat(path,info) then
|
||||
if (length(Path)>0) and (path[1]='/') and FStat(path,info) then
|
||||
FSearch:=path
|
||||
else
|
||||
FSearch:=Linux.FSearch(path,dirlist);
|
||||
@ -914,7 +914,10 @@ End.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.20 2000-04-17 20:43:27 pierre
|
||||
Revision 1.21 2000-04-18 08:03:40 michael
|
||||
Corrected fix for bug 902
|
||||
|
||||
Revision 1.20 2000/04/17 20:43:27 pierre
|
||||
fix bug 902 for win32 and linux
|
||||
|
||||
Revision 1.19 2000/03/19 18:48:19 peter
|
||||
|
Loading…
Reference in New Issue
Block a user