aboutsummaryrefslogtreecommitdiffstats
path: root/common/ipc-client.c
diff options
context:
space:
mode:
authorLibravatar Antonin Décimo <antonin.decimo@gmail.com>2019-08-07 15:56:19 +0200
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-08-12 09:42:11 +0900
commit1d6d26cdec14936cfdf27d46b4561121b36184c4 (patch)
treea91045048d5e6c57b1b4a8c97337817f554baa05 /common/ipc-client.c
parentlayer_shell: Guard against negative exclusive zone (diff)
downloadsway-1d6d26cdec14936cfdf27d46b4561121b36184c4.tar.gz
sway-1d6d26cdec14936cfdf27d46b4561121b36184c4.tar.zst
sway-1d6d26cdec14936cfdf27d46b4561121b36184c4.zip
ipc-client: remove useless free for failed malloc
Diffstat (limited to 'common/ipc-client.c')
-rw-r--r--common/ipc-client.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/ipc-client.c b/common/ipc-client.c
index 4750a289..ec0454c9 100644
--- a/common/ipc-client.c
+++ b/common/ipc-client.c
@@ -117,7 +117,6 @@ struct ipc_response *ipc_recv_response(int socketfd) {
117 return response; 117 return response;
118error_2: 118error_2:
119 free(response); 119 free(response);
120 free(payload);
121error_1: 120error_1:
122 sway_log(SWAY_ERROR, "Unable to allocate memory for IPC response"); 121 sway_log(SWAY_ERROR, "Unable to allocate memory for IPC response");
123 return NULL; 122 return NULL;