diff options
-rw-r--r-- | sway/ipc-server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c index f5be9e37..be6e411a 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -298,7 +298,7 @@ void ipc_get_pixels(wlc_handle output) { char *data = malloc(sizeof(response_header) + size->w * size->h * 4); if (!data) { sway_log(L_ERROR, "Unable to allocate pixels for get_pixels"); - ipc_client_disconnect(client); + ipc_client_disconnect(req->client); free(req); continue; } |