mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-05-25 01:11:21 -04:00
perform size checks on various operations
Signed-off-by: Tavi <tavi@divested.dev> Co-authored-by: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com>
This commit is contained in:
parent
7481c8857f
commit
2f06cddeb7
46 changed files with 1166 additions and 13 deletions
12
wmemset.c
Normal file
12
wmemset.c
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include "musl.h"
|
||||
|
||||
/* Copied from musl libc version 1.2.5 licensed under the MIT license */
|
||||
|
||||
#include <wchar.h>
|
||||
|
||||
wchar_t *musl_wmemset(wchar_t *d, wchar_t c, size_t n)
|
||||
{
|
||||
wchar_t *ret = d;
|
||||
while (n--) *d++ = c;
|
||||
return ret;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue