summaryrefslogtreecommitdiffstats
path: root/src/libmach/dwarfopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmach/dwarfopen.c')
-rw-r--r--src/libmach/dwarfopen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmach/dwarfopen.c b/src/libmach/dwarfopen.c
index 6122ae68..728944f4 100644
--- a/src/libmach/dwarfopen.c
+++ b/src/libmach/dwarfopen.c
@@ -58,13 +58,13 @@ dwarfopen(Elf *elf)
d->elf = elf;
if(loadsection(elf, ".debug_abbrev", &d->abbrev) < 0
|| loadsection(elf, ".debug_aranges", &d->aranges) < 0
- || loadsection(elf, ".debug_frame", &d->frame) < 0
|| loadsection(elf, ".debug_line", &d->line) < 0
|| loadsection(elf, ".debug_pubnames", &d->pubnames) < 0
- || loadsection(elf, ".debug_ranges", &d->ranges) < 0
- || loadsection(elf, ".debug_str", &d->str) < 0
|| loadsection(elf, ".debug_info", &d->info) < 0)
goto err;
+ loadsection(elf, ".debug_frame", &d->frame);
+ loadsection(elf, ".debug_ranges", &d->ranges);
+ loadsection(elf, ".debug_str", &d->str);
/* make this a table once there are more */
switch(d->elf->hdr.machine){