* Avoid infinite loop on Unix

git-svn-id: trunk@18242 -
This commit is contained in:
pierre 2011-08-17 11:22:54 +00:00
parent 79a96ab287
commit 8dc1ce55c1

View File

@ -55,7 +55,10 @@ begin
begin
dir:=copy(dir,1,maxpos-1);
TestDirectoryExists(dir,true);
end;
end
else
{ if length(dir)<=1, exit test }
exit;
end;
end;