aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/conv.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/conv.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/conv.c')
-rw-r--r--libs/libc/conv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/conv.c b/libs/libc/conv.c
index 670fdb3..bb68d7b 100644
--- a/libs/libc/conv.c
+++ b/libs/libc/conv.c
@@ -105,7 +105,7 @@ char *itoa(int n)
if (negative) {
char *aux = (char *)malloc((u32)(sz + 2));
- strcpy(aux, ret);
+ strlcpy(aux, ret, sz + 2);
aux[sz] = '-';
aux[sz + 1] = 0;
free(ret);