summaryrefslogtreecommitdiff
path: root/plugins/elf/dynamic.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/elf/dynamic.c')
-rw-r--r--plugins/elf/dynamic.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/elf/dynamic.c b/plugins/elf/dynamic.c
index c6fce14..13292ec 100644
--- a/plugins/elf/dynamic.c
+++ b/plugins/elf/dynamic.c
@@ -333,15 +333,15 @@ bool resolve_plt_using_got(GElfFormat *format, virt_t *virt)
result = false;
if (!find_elf_program_by_type(format, PT_DYNAMIC, &dynamic))
- goto rpug_exit;
+ goto exit;
if (!_find_elf_dynamic_item_by_type(format, &dynamic, DT_PLTGOT, &pltgot))
- goto rpug_exit;
+ goto exit;
got_virt = ELF_DYN(format, pltgot, d_un.d_ptr);
if (!g_exe_format_translate_address_into_vmpa(G_EXE_FORMAT(format), got_virt, &got_addr))
- goto rpug_exit;
+ goto exit;
content = G_BIN_FORMAT(format)->content;
@@ -377,7 +377,7 @@ bool resolve_plt_using_got(GElfFormat *format, virt_t *virt)
}
- rpug_exit:
+ exit:
return result;