mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 12:40:22 +02:00
DBG: fix potential range check
git-svn-id: trunk@28789 -
This commit is contained in:
parent
18f7996a1b
commit
ea9d796ce5
@ -564,7 +564,7 @@ begin
|
||||
end
|
||||
|
||||
else
|
||||
if (S[1] = '^')
|
||||
if ((S <> '') and (S[1] = '^'))
|
||||
or ((ParsedWhatIsValue <> '') and (ParsedWhatIsValue[1] = '^'))
|
||||
or ((ParsedWhatIsType <> '') and (ParsedWhatIsType[1] = '^'))
|
||||
then begin
|
||||
|
Loading…
Reference in New Issue
Block a user