Message ID | 20190205064334.GA2152@avx2 (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [-mm] elf: fixup compilation | expand |
--- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c @@ -2110,8 +2110,8 @@ static int write_note_info(struct elf_note_info *info, /* write out the thread status notes section */ list_for_each_entry(ets, &info->thread_list, list) { - for (i = 0; i < tmp->num_notes; i++) - if (!writenote(&tmp->notes[i], cprm)) + for (i = 0; i < ets->num_notes; i++) + if (!writenote(&ets->notes[i], cprm)) return 0; }
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> --- fold into elf-use-list_for_each_entry.patch fs/binfmt_elf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)