From c56740aafd46405f84e0419b7059ca6fa2500320 Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Sat, 19 Mar 2011 11:53:31 +0100 Subject: [PATCH] dwarflint: Do the ET_REL layout starting on address > 0 --- dwarflint/sections.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwarflint/sections.cc b/dwarflint/sections.cc index 4a8f6401e..a9b2f0cec 100644 --- a/dwarflint/sections.cc +++ b/dwarflint/sections.cc @@ -68,7 +68,7 @@ namespace /* Taken from libdwfl. */ GElf_Addr base = 0; - GElf_Addr start = 0, end = 0, bias = 0; + GElf_Addr start = 0x1000, end = 0x1000, bias = 0; bool first = true; Elf_Scn *scn = NULL; -- 2.47.3