* Fix from Kevin Jesshope to fix concurrent access in case of CGI

This commit is contained in:
Michaël Van Canneyt 2022-08-24 09:54:10 +02:00
parent 87ea9a9e0f
commit f8bf34303c

View File

@ -310,7 +310,7 @@ Var
F : TFileStream;
begin
F:=TFileStream.Create(AFileName,fmOpenRead);
F:=TFileStream.Create(AFileName,fmOpenRead or fmShareDenyWrite);
try
LoadFromStream(F);
finally