# HG changeset patch # User Richard M. Stallman # Date 1006737505 0 # Node ID 370b4ba3f429c94d7c9dc3361742021f80723012 # Parent e6244d9fb1c6e861b432decabdbb066e623cf9eb (unexec): Index by n, not nn, when checking for ".sbss". diff -r e6244d9fb1c6 -r 370b4ba3f429 src/unexelf.c --- a/src/unexelf.c Mon Nov 26 00:36:28 2001 +0000 +++ b/src/unexelf.c Mon Nov 26 01:18:25 2001 +0000 @@ -1016,7 +1016,7 @@ ".sdata1") || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name), ".data1") - || !strcmp (old_section_names + NEW_SECTION_H (nn).sh_name, + || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name), ".sbss")) src = (caddr_t) OLD_SECTION_H (n).sh_addr; else