假設如下:訪問ELF字符串表節頭
Elf_Section_Header *sectionHeaderTable //points to the start of a ELF section header table
Elf_Section_Header *symtabHeader //points to the start of the symtab section header
爲什麼不下面我指向關聯的字符串表節頭?
Elf_Section_Header *strTabSectionHeader = (Elf_Section_Header *)((char *)sectionHeaderTable + (symtabHeader->strtab_index));
strTabSectionHeader->type == SHT_STRTAB
等於假
我應該如何指向關聯的字符串表節頭?