mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
arm64: prevent panic when using syscall mux + large arg call (mmap)
if the syscall muxes are used, up to two additional arguments may be required. This means that the 8 required for mmap increases up to 10 (for __syscall). Sponsored by: Juniper Networks, Inc.
This commit is contained in:
parent
5be78ccf7a
commit
740b879c6a
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ freebsd32_fetch_syscall_args(struct thread *td)
|
|||
register_t *ap;
|
||||
struct syscall_args *sa;
|
||||
int error, i, nap, narg;
|
||||
unsigned int args[4];
|
||||
unsigned int args[6];
|
||||
|
||||
nap = 4;
|
||||
p = td->td_proc;
|
||||
|
|
|
|||
Loading…
Reference in a new issue