Elfheader: Fix the scope of the variable can be reduced warning.

Codacy.
This commit is contained in:
lightningterror 2023-09-08 18:15:12 +02:00
parent 6bd1209146
commit 6186f39068
1 changed files with 2 additions and 5 deletions

View File

@ -363,14 +363,11 @@ void ElfObject::LoadSectionHeaders()
if ((i_st >= 0) && (i_dt >= 0))
{
const char* SymNames;
Elf32_Sym* eS;
if (secthead[i_dt].sh_offset < data.size() &&
secthead[i_st].sh_offset < data.size())
{
SymNames = (char*)(data.data() + secthead[i_dt].sh_offset);
eS = (Elf32_Sym*)(data.data() + secthead[i_st].sh_offset);
const char* SymNames = (char*)(data.data() + secthead[i_dt].sh_offset);
Elf32_Sym* eS = (Elf32_Sym*)(data.data() + secthead[i_st].sh_offset);
Console.WriteLn("found %d symbols", secthead[i_st].sh_size / sizeof(Elf32_Sym));
R5900SymbolMap.Clear();