diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-01-22 14:00:33 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-01-22 14:00:33 -0500 |
| commit | 81799924c14521c541aa9eba9f8b8e767ccc83a6 (patch) | |
| tree | 3405f6544b8b704895b63e7d8243cc17aa99a6c8 /swaybar/ipc.c | |
| parent | c89897b2f38223cd8100c737e787ebe16e7dd5d5 (diff) | |
swaybar: fix command malloc in workspace command
This fixes a typo on the malloc line in ipc_send_workspace_command. The
plus one to the size for the null-terminator was outside of the malloc
call, which was causing the incorrect pointer to be freed later in the
function.
Diffstat (limited to 'swaybar/ipc.c')
| -rw-r--r-- | swaybar/ipc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/ipc.c b/swaybar/ipc.c index 46565202..bf1d0f43 100644 --- a/swaybar/ipc.c +++ b/swaybar/ipc.c @@ -20,7 +20,7 @@ void ipc_send_workspace_command(struct swaybar *bar, const char *ws) { } } - char *command = malloc(size) + 1; + char *command = malloc(size + 1); if (!command) { return; } |
