diff options
author | Marvin Borner | 2021-04-01 19:39:14 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-01 19:39:14 +0200 |
commit | afa00abb2b68205bee539d7947130d6b1b1ec6e9 (patch) | |
tree | 3a821a75af6c4d4ff1bd4128c4859d77abf87e66 /libs/libc/cpu.c | |
parent | 4c168fb34c15a1b8981abef7ccef1542a6fb05ca (diff) |
Hardened entire system
By using the nonnull attribute and replace buffer-overflow-prone
functions like strcpy, strcat and sprintf by strlcpy, strlcat and
snprintf.
Diffstat (limited to 'libs/libc/cpu.c')
-rw-r--r-- | libs/libc/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/cpu.c b/libs/libc/cpu.c index 8ca4d27..37bdb4d 100644 --- a/libs/libc/cpu.c +++ b/libs/libc/cpu.c @@ -124,7 +124,7 @@ static void fpu_handler(struct regs *r) __asm__ volatile("clts"); } -static u8 fpu_state[512] __attribute__((aligned(16))); +static u8 fpu_state[512] ALIGNED(16); void fpu_restore(void) { __asm__ volatile("fxrstor (%0)" ::"r"(fpu_state)); |