Merge pull request #3740 from Emantor/fix/ipc_allocs

Fix small memory leaks reported in #3658
This commit is contained in:
Ian Fan 2019-02-22 08:20:26 +00:00 committed by GitHub
commit 923cd865f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}