Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid overlapping program header table with section header table #457 #460

Merged
merged 7 commits into from
Feb 24, 2023

Commits on Feb 19, 2023

  1. Avoid overlapping program header table with section header table NixO…

    …S#457
    
    This patch checks if the section header table is placed right after the
    program header table such that it would overlap when we add a new entry
    in the program header table.
    If that is the case, move the section header table to the end of the file.
    
    Moreover, there is no need to add a new PT_LOAD segment everytime.
    Check if the last segment is already a PT_LOAD with the same characteristics
    and adjacent. Extend it in this case.
    brenoguim committed Feb 19, 2023
    Configuration menu
    Copy the full SHA
    d925e8c View commit details
    Browse the repository at this point in the history
  2. Update src/patchelf.cc

    Co-authored-by: Jörg Thalheim <[email protected]>
    brenoguim and Mic92 committed Feb 19, 2023
    Configuration menu
    Copy the full SHA
    313c611 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2023

  1. to trigger ci

    brenoguim committed Feb 20, 2023
    Configuration menu
    Copy the full SHA
    2ccf3c3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5f6de0 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2023

  1. Update tests/repeated-updates.sh

    Co-authored-by: Jörg Thalheim <[email protected]>
    brenoguim and Mic92 committed Feb 23, 2023
    Configuration menu
    Copy the full SHA
    afca68f View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. Configuration menu
    Copy the full SHA
    70a477a View commit details
    Browse the repository at this point in the history
  2. Shellcheck fixes

    brenoguim committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    eb9ea00 View commit details
    Browse the repository at this point in the history