mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
Indentation error detected by g++-6
modified: p_lx_elf.cpp
This commit is contained in:
parent
c678ccdfb1
commit
5151c8a505
|
@ -258,11 +258,12 @@ PackLinuxElf32::PackLinuxElf32help1(InputFile *f)
|
|||
gashtab = (unsigned const *)elf_find_dynamic(Elf32_Dyn::DT_GNU_HASH);
|
||||
hashtab = (unsigned const *)elf_find_dynamic(Elf32_Dyn::DT_HASH);
|
||||
jni_onload_sym = elf_lookup("JNI_OnLoad");
|
||||
if (jni_onload_sym)
|
||||
if (jni_onload_sym) {
|
||||
jni_onload_va = get_te32(&jni_onload_sym->st_value);
|
||||
jni_onload_va = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void PackLinuxElf::pack3(OutputFile *fo, Filter &ft)
|
||||
{
|
||||
|
@ -627,11 +628,12 @@ PackLinuxElf64::PackLinuxElf64help1(InputFile *f)
|
|||
gashtab = (unsigned const *)elf_find_dynamic(Elf64_Dyn::DT_GNU_HASH);
|
||||
hashtab = (unsigned const *)elf_find_dynamic(Elf64_Dyn::DT_HASH);
|
||||
jni_onload_sym = elf_lookup("JNI_OnLoad");
|
||||
if (jni_onload_sym)
|
||||
if (jni_onload_sym) {
|
||||
jni_onload_va = get_te64(&jni_onload_sym->st_value);
|
||||
jni_onload_va = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Linker* PackLinuxElf64amd::newLinker() const
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user