i3-input: fix (irrelevant) memory leak
Given that the code was exit(0)ing directly after using that memory, it’s not like this has any effect. However, less false positives on the clang-analyze report pages is a good thing.
This commit is contained in:
parent
0d50658fa7
commit
e2f47ef466
|
@ -214,6 +214,8 @@ static void finish_input() {
|
||||||
|
|
||||||
ipc_send_message(sockfd, strlen(full), 0, (uint8_t*)full);
|
ipc_send_message(sockfd, strlen(full), 0, (uint8_t*)full);
|
||||||
|
|
||||||
|
free(full);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
free(command);
|
free(command);
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue