* Fix relative path detection (bug id 37727)

git-svn-id: trunk@47350 -
This commit is contained in:
michael 2020-11-08 20:50:23 +00:00
parent b425c97fce
commit b90d6e1114

View File

@ -124,7 +124,7 @@ begin
else
begin
D:=ADirectory;
if Copy(D,1,1)<>'/' then
if (D<>ExpandFileName(D)) then
D:=BaseDir+D;
if not DirectoryExists(D) then
Raise HTTPError.CreateFmt(SErrInvalidDirectory,[D]);