aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/alloc.c
diff options
context:
space:
mode:
authorMarvin Borner2021-04-01 19:39:14 +0200
committerMarvin Borner2021-04-01 19:39:14 +0200
commitafa00abb2b68205bee539d7947130d6b1b1ec6e9 (patch)
tree3a821a75af6c4d4ff1bd4128c4859d77abf87e66 /libs/libc/alloc.c
parent4c168fb34c15a1b8981abef7ccef1542a6fb05ca (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/alloc.c')
-rw-r--r--libs/libc/alloc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/libc/alloc.c b/libs/libc/alloc.c
index b8139d0..485a60f 100644
--- a/libs/libc/alloc.c
+++ b/libs/libc/alloc.c
@@ -414,8 +414,7 @@ void *malloc_debug(u32 size, const char *file, int line, const char *func, const
void free_debug(void *ptr, const char *file, int line, const char *func, const char *inp)
{
- if (ptr)
- _free(ptr);
+ _free(ptr);
(void)file;
(void)line;