commit 923cd865f5817a64ee5e882ebcc2c9190371ef9d
parent 7252ca09a7ccd09673a2903509cde6dcb077bfb7
Author: Ian Fan <ianfan0@gmail.com>
Date: Fri, 22 Feb 2019 08:20:26 +0000
Merge pull request #3740 from Emantor/fix/ipc_allocs
Fix small memory leaks reported in #3658
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/sway/main.c b/sway/main.c
@@ -126,6 +126,7 @@ void run_as_ipc_client(char *command, char *socket_path) {
uint32_t len = strlen(command);
char *resp = ipc_single_command(socketfd, IPC_COMMAND, command, &len);
printf("%s\n", resp);
+ free(resp);
close(socketfd);
}
@@ -347,6 +348,7 @@ int main(int argc, char **argv) {
}
char *command = join_args(argv + optind, argc - optind);
run_as_ipc_client(command, socket_path);
+ free(command);
return 0;
}