Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
brenoguim committed Feb 20, 2023
1 parent 86fa688 commit 54ecd6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/patchelf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2008,7 +2008,7 @@ void ElfFile<ElfFileParamNames>::rebuildGnuHashTable(const char* strTab, span<El
}

// Fill hash table
for (size_t i = 0; i < entries.size(); ++i)
for (size_t i = 0; i < ght.m_table.size(); ++i)
{
auto& n = entries[i];
bool isLast = (i == entries.size() - 1) || (n.bucketIdx != entries[i+1].bucketIdx);
Expand Down

0 comments on commit 54ecd6c

Please sign in to comment.