mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 19:16:16 +02:00
FpDebug: Do not stop on lines with unknown line info (linenr=0)
git-svn-id: trunk@47222 -
This commit is contained in:
parent
f6bbc53755
commit
f4818c2bfd
@ -1043,6 +1043,8 @@ begin
|
||||
if (((FStoreStepSrcFilename=sym.FileName) and (FStoreStepSrcLineNo=sym.Line)) {or FStepOut}) and
|
||||
(FStoreStepFuncAddr=sym.Address.Address) then
|
||||
result := dcsiSameLine
|
||||
else if sym.Line = 0 then
|
||||
result := dcsiNoLineInfo
|
||||
else
|
||||
result := dcsiNewLine;
|
||||
sym.ReleaseReference;
|
||||
|
Loading…
Reference in New Issue
Block a user