]> git.eshelyaron.com Git - emacs.git/commit
ELF unexec: Correct section header index
authorAlan Modra <amodra@gmail.com>
Sun, 8 Nov 2015 17:28:59 +0000 (09:28 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 Nov 2015 18:00:59 +0000 (10:00 -0800)
commit0bcd08ef052bca9b8d08696068c2a0c387d0dd56
tree5fc6f44375e378ae2ff8d97d4012ad9f61d80120
parent82c1b368a227ca710e3582be311f2cbabc33499f
ELF unexec: Correct section header index

First a small fix.  The code incorrectly uses "NEW_SECTION_H (n)" when
it should have been using "NEW_SECTION_H (nn)" to find the name of the
section currently being processed.  Of course, before the bss
sections, n and nn have the same value, so this doesn't matter except
in the case of .sbss.  For .sbss this probably meant .bss (most likely
the next section) was copied from memory.  A later patch removes the
bogus .sbss handling anyway.

* unexelf.c (unexec): Use correct index to look up names.
src/unexelf.c