1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-04-27 18:25:06 +00:00

Fix memory leak.

This commit is contained in:
ly1217 2019-10-31 00:31:38 -07:00
parent 23f581b39f
commit 9b2e2dc652

View File

@ -377,6 +377,7 @@ void searpc_free_client_with_pipe_transport (SearpcClient *client)
close(pipe_client->pipe_fd);
#endif
g_free (pipe_client);
g_free (data->service);
g_free (data);
searpc_client_free (client);
}