mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a typo resulting in truncated linux32 signal trampoline code copied
to the usermode. Usually, signal handler segfaulted on return. Reviewed by: jhb MFC after: 3 days
This commit is contained in:
parent
77cae244f8
commit
d4d2a400e4
1 changed files with 1 additions and 1 deletions
|
|
@ -868,7 +868,7 @@ linux_copyout_strings(struct image_params *imgp)
|
|||
*/
|
||||
if (sigcodesz)
|
||||
copyout(imgp->proc->p_sysent->sv_sigcode,
|
||||
((caddr_t)arginfo - sigcodesz), szsigcode);
|
||||
((caddr_t)arginfo - sigcodesz), sigcodesz);
|
||||
|
||||
/*
|
||||
* If we have a valid auxargs ptr, prepare some room
|
||||
|
|
|
|||
Loading…
Reference in a new issue