summaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin+git@gmail.com>2016-05-31 09:25:54 -0500
committerLibravatar Zandr Martin <zandrmartin+git@gmail.com>2016-05-31 09:25:54 -0500
commit1b4d61662c1deddbf48c3392e40f6ac6a888bc90 (patch)
tree9a74f7bbf693d67328996a899c26f4ab4f39bfd0 /sway
parentMerge pull request #637 from 1ace/fix/ipc-leak (diff)
downloadsway-1b4d61662c1deddbf48c3392e40f6ac6a888bc90.tar.gz
sway-1b4d61662c1deddbf48c3392e40f6ac6a888bc90.tar.zst
sway-1b4d61662c1deddbf48c3392e40f6ac6a888bc90.zip
fix swaybar problem in 08bef67
Diffstat (limited to 'sway')
-rw-r--r--sway/ipc-server.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 13e1837a..484d7e51 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -490,6 +490,7 @@ void ipc_client_handle_command(struct ipc_client *client) {
490 } 490 }
491 491
492exit_cleanup: 492exit_cleanup:
493 client->payload_length = 0;
493 free(buf); 494 free(buf);
494 return; 495 return;
495} 496}