LeakView: Fix resolve. Outdated use of ImageBase, which is now RelocationOffset

(cherry picked from commit 8ca43789be)
This commit is contained in:
Martin 2024-02-28 22:23:33 +01:00
parent f9216f15d2
commit 078cf6077a

View File

@ -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;