diff options
author | Marvin Borner | 2021-02-26 14:51:13 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-26 14:51:13 +0100 |
commit | 0f00932955521c3c2fb8140176ab72f22172c298 (patch) | |
tree | 99561c0254d14c0c3536f900ee83b0341a5c8a1b /libgui | |
parent | dec16faf32e75d613e20cac175b8a0c2d3612b94 (diff) |
Started UBSan and stack-smashing check support
Diffstat (limited to 'libgui')
-rw-r--r-- | libgui/msg.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libgui/msg.c b/libgui/msg.c index 4576a5f..8448e73 100644 --- a/libgui/msg.c +++ b/libgui/msg.c @@ -5,18 +5,17 @@ #include <print.h> #include <sys.h> -static struct message msg_buf = { 0 }; - int msg_send(u32 pid, enum message_type type, void *data) { + struct message msg = { 0 }; assert((signed)pid != -1); char path[32] = { 0 }; sprintf(path, "/proc/%d/msg", pid); - msg_buf.magic = MSG_MAGIC; - msg_buf.src = getpid(); - msg_buf.type = type; - msg_buf.data = data; - return write(path, &msg_buf, 0, sizeof(msg_buf)); + msg.magic = MSG_MAGIC; + msg.src = getpid(); + msg.type = type; + msg.data = data; + return write(path, &msg, 0, sizeof(msg)); } int msg_receive(struct message *msg) |