Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'execve-v6.11-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux

Pull execve fix from Kees Cook:

- binfmt_elf_fdpic: fix AUXV size with ELF_HWCAP2 (Max Filippov)

* tag 'execve-v6.11-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
binfmt_elf_fdpic: fix AUXV size calculation when ELF_HWCAP2 is defined

+3
+3
fs/binfmt_elf_fdpic.c
··· 589 589 590 590 if (bprm->have_execfd) 591 591 nitems++; 592 + #ifdef ELF_HWCAP2 593 + nitems++; 594 + #endif 592 595 593 596 csp = sp; 594 597 sp -= nitems * 2 * sizeof(unsigned long);