mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 21:38:27 +02:00
LeakView: Fix resolve. Outdated use of ImageBase, which is now RelocationOffset
(cherry picked from commit 8ca43789be
)
This commit is contained in:
parent
f9216f15d2
commit
078cf6077a
@ -952,9 +952,9 @@ begin
|
||||
end
|
||||
{$ELSE}
|
||||
if j > 0 then
|
||||
sym := DwarfInfo.FindProcSymbol(CurLine.Addr - 1 + ImageLoaderList.ImageBase)
|
||||
sym := DwarfInfo.FindProcSymbol(CurLine.Addr - 1 + ImageLoaderList.RelocationOffset)
|
||||
else
|
||||
sym := DwarfInfo.FindProcSymbol(CurLine.Addr + ImageLoaderList.ImageBase);
|
||||
sym := DwarfInfo.FindProcSymbol(CurLine.Addr + ImageLoaderList.RelocationOffset);
|
||||
if (sym <> nil) and (sym.Line > 0) then begin
|
||||
CurLine.FileName := sym.FileName;
|
||||
CurLine.LineNum := sym.Line;
|
||||
|
Loading…
Reference in New Issue
Block a user