* only check for the method if one is given at all (otherwise everything would be skipped)

git-svn-id: trunk@38115 -
This commit is contained in:
svenbarth 2018-02-04 20:20:32 +00:00
parent 17c010b9a3
commit 2d52536460

View File

@ -559,7 +559,7 @@ begin
Continue;
end;
{ then check for the method }
if entry^.Method <> aMethod then begin
if Assigned(aMethod) and (entry^.Method <> aMethod) then begin
lastentry := entry;
entry := entry^.Next;
Continue;