From 3d6a3413b831829c4b09bf4901b620bc5c023ddd Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 2 May 2016 11:24:00 +0100 Subject: sway: always terminate ipc path --- sway/ipc-server.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sway/ipc-server.c b/sway/ipc-server.c index 4d9264e8..a9325a81 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -66,6 +66,7 @@ void ipc_init(void) { // We want to use socket name set by user, not existing socket from another sway instance. if (getenv("SWAYSOCK") != NULL && access(getenv("SWAYSOCK"), F_OK) == -1) { strncpy(ipc_sockaddr->sun_path, getenv("SWAYSOCK"), sizeof(ipc_sockaddr->sun_path)); + ipc_sockaddr->sun_path[sizeof(ipc_sockaddr->sun_path) - 1] = 0; } unlink(ipc_sockaddr->sun_path); -- cgit v1.2.3-54-g00ecf