| OLD | NEW |
| (Empty) |
| 1 diff --git a/build/make/obj_int_extract.c b/build/make/obj_int_extract.c | |
| 2 index c46d9d5..bb3588b 100644 | |
| 3 --- a/build/make/obj_int_extract.c | |
| 4 +++ b/build/make/obj_int_extract.c | |
| 5 @@ -535,7 +535,8 @@ int parse_elf(uint8_t *buf, size_t sz, output_fmt_t mode) | |
| 6 | |
| 7 strcpy(strtsb_name, (char *)(elf.buf + shdr.sh_offset + shdr.sh
_name)); | |
| 8 | |
| 9 - if (!(strcmp(strtsb_name, ".shstrtab"))) | |
| 10 + if (!(strcmp(strtsb_name, ".shstrtab")) | |
| 11 + || (strcmp(strtsb_name, ".strtab"))) | |
| 12 { | |
| 13 /* log_msg("found section: %s\n", strtsb_name); */ | |
| 14 strtab_off64 = shdr.sh_offset; | |
| OLD | NEW |