You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
552 B

  1. From 9b2e2dc65213fb22ed400dc54e4c2279564df62b Mon Sep 17 00:00:00 2001
  2. From: ly1217 <yu.liu@seafile.com>
  3. Date: Thu, 31 Oct 2019 00:31:38 -0700
  4. Subject: [PATCH] Fix memory leak.
  5. ---
  6. lib/searpc-named-pipe-transport.c | 1 +
  7. 1 file changed, 1 insertion(+)
  8. --- a/lib/searpc-named-pipe-transport.c
  9. +++ b/lib/searpc-named-pipe-transport.c
  10. @@ -377,6 +377,7 @@ void searpc_free_client_with_pipe_transp
  11. close(pipe_client->pipe_fd);
  12. #endif
  13. g_free (pipe_client);
  14. + g_free (data->service);
  15. g_free (data);
  16. searpc_client_free (client);
  17. }