diff options
author | Gustavo Sverzut Barbieri <barbieri@profusion.mobi> | 2016-11-23 18:22:21 -0200 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@profusion.mobi> | 2016-11-23 18:22:21 -0200 |
commit | fc76abccd6fa694d5fbdc4fc85b65c9004e12271 (patch) | |
tree | 48ad4c75f83b548bf678cb4ccd194b7ddd193606 | |
parent | 768e6498b17f28546bf88abd173bb26bb104bd74 (diff) |
ecore_ipc: free(address) on dialer error.
-rw-r--r-- | src/lib/ecore_ipc/ecore_ipc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/ecore_ipc/ecore_ipc.c b/src/lib/ecore_ipc/ecore_ipc.c index 2ea730e87a..8a38815da3 100644 --- a/src/lib/ecore_ipc/ecore_ipc.c +++ b/src/lib/ecore_ipc/ecore_ipc.c | |||
@@ -681,6 +681,7 @@ ecore_ipc_server_connect(Ecore_Ipc_Type type, char *name, int port, const void * | |||
681 | return NULL; /* dialer will trigger all cleanup on its own callbacks */ | 681 | return NULL; /* dialer will trigger all cleanup on its own callbacks */ |
682 | 682 | ||
683 | error_dialer: | 683 | error_dialer: |
684 | free(address); | ||
684 | free(svr); | 685 | free(svr); |
685 | return NULL; | 686 | return NULL; |
686 | } | 687 | } |