mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 01:38:07 +02:00
* 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:
parent
17c010b9a3
commit
2d52536460
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user