Ensure we set all fpu registers to zero by using the address and size of

the union over one of its members.
This commit is contained in:
andrew 2013-08-17 14:42:40 +00:00
parent 4275694348
commit 7bf16ad3f2

View File

@ -90,7 +90,7 @@ pt_fpreg_to_ucontext(const struct fpreg *r __unused, ucontext_t *uc)
mcontext_t *mc = &uc->uc_mcontext;
/* XXX */
memset(&mc->__fpu.__fpregs, 0, sizeof(__fpregset_t));
memset(&mc->__fpu, 0, sizeof(mc->__fpu));
}
void