mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Revert r307813.
I misread the code, and it shouldn't have compiled (fputhread is just a variable name).
This commit is contained in:
parent
89965e7011
commit
eaa5e39660
1 changed files with 3 additions and 3 deletions
|
|
@ -769,9 +769,9 @@ fix_unaligned(struct thread *td, struct trapframe *frame)
|
|||
* the registers, and that their current state is in
|
||||
* the PCB.
|
||||
*/
|
||||
if (vecthread != td) {
|
||||
if (vecthread)
|
||||
save_vec(vecthread);
|
||||
if (fputhread != td) {
|
||||
if (fputhread)
|
||||
save_vec(fputhread);
|
||||
enable_vec(td);
|
||||
}
|
||||
save_vec(td);
|
||||
|
|
|
|||
Loading…
Reference in a new issue