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/libgui/msg.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/libgui/msg.c')
-rw-r--r-- | libs/libgui/msg.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libs/libgui/msg.c b/libs/libgui/msg.c index 73af242..051072e 100644 --- a/libs/libgui/msg.c +++ b/libs/libgui/msg.c @@ -8,11 +8,9 @@ res msg_send(u32 pid, enum message_type type, void *data, u32 size) { - if (!data) - return -EFAULT; assert((signed)pid != -1 && size >= sizeof(struct message_header)); char path[32] = { 0 }; - sprintf(path, "/proc/%d/msg", pid); + snprintf(path, sizeof(path), "/proc/%d/msg", pid); struct message_header *header = data; header->magic = MSG_MAGIC; header->src = getpid(); |