mirror of
https://github.com/swaywm/sway.git
synced 2024-11-25 09:21:28 +00:00
ipc-client: remove useless free for failed malloc
This commit is contained in:
parent
8bd3b7be8a
commit
3896bdaa68
|
@ -117,7 +117,6 @@ struct ipc_response *ipc_recv_response(int socketfd) {
|
||||||
return response;
|
return response;
|
||||||
error_2:
|
error_2:
|
||||||
free(response);
|
free(response);
|
||||||
free(payload);
|
|
||||||
error_1:
|
error_1:
|
||||||
sway_log(SWAY_ERROR, "Unable to allocate memory for IPC response");
|
sway_log(SWAY_ERROR, "Unable to allocate memory for IPC response");
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in a new issue