mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix the size returned for NT_FPREGSET.
Sponsored by: University of Cambridge, Google, Inc.
This commit is contained in:
parent
9af41803cb
commit
0b25cbc79d
1 changed files with 1 additions and 1 deletions
|
|
@ -2271,7 +2271,7 @@ __elfN(get_fpregset)(struct regset *rs, struct thread *td, void *buf,
|
|||
fill_fpregs(td, fpregset);
|
||||
#endif
|
||||
}
|
||||
*sizep = sizeof(fpregset);
|
||||
*sizep = sizeof(*fpregset);
|
||||
return (true);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue