mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
parisc: correct use of SHF_ALLOC
SHF_ALLOC is suitable for testing against the sh_flags field, not the sh_type field. Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
This commit is contained in:
parent
4255f0d2a1
commit
fe579c69c6
1 changed files with 1 additions and 1 deletions
|
@ -893,7 +893,7 @@ int module_finalize(const Elf_Ehdr *hdr,
|
|||
* ourselves */
|
||||
for (i = 1; i < hdr->e_shnum; i++) {
|
||||
if(sechdrs[i].sh_type == SHT_SYMTAB
|
||||
&& (sechdrs[i].sh_type & SHF_ALLOC)) {
|
||||
&& (sechdrs[i].sh_flags & SHF_ALLOC)) {
|
||||
int strindex = sechdrs[i].sh_link;
|
||||
/* FIXME: AWFUL HACK
|
||||
* The cast is to drop the const from
|
||||
|
|
Loading…
Reference in a new issue