aboutsummaryrefslogtreecommitdiffstats
path: root/common/ipc-client.c
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-08-06 13:58:12 +0100
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-08-06 17:30:24 +0100
commitbaf4604629f2e54219af1b103c58e210ce3d0952 (patch)
tree68359fc53dd45f8e27f832da154027029ab73361 /common/ipc-client.c
parentMerge pull request #2428 from RyanDwyer/workspace-move-to-output (diff)
downloadsway-baf4604629f2e54219af1b103c58e210ce3d0952.tar.gz
sway-baf4604629f2e54219af1b103c58e210ce3d0952.tar.zst
sway-baf4604629f2e54219af1b103c58e210ce3d0952.zip
ipc-client: fix memory leaks in get_socketpath
Diffstat (limited to 'common/ipc-client.c')
-rw-r--r--common/ipc-client.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/ipc-client.c b/common/ipc-client.c
index 4d2d88cc..24a2f9c2 100644
--- a/common/ipc-client.c
+++ b/common/ipc-client.c
@@ -25,6 +25,7 @@ char *get_socketpath(void) {
25 if (line && *line) { 25 if (line && *line) {
26 return line; 26 return line;
27 } 27 }
28 free(line);
28 } 29 }
29 const char *i3sock = getenv("I3SOCK"); 30 const char *i3sock = getenv("I3SOCK");
30 if (i3sock) { 31 if (i3sock) {
@@ -37,6 +38,7 @@ char *get_socketpath(void) {
37 if (line && *line) { 38 if (line && *line) {
38 return line; 39 return line;
39 } 40 }
41 free(line);
40 } 42 }
41 return NULL; 43 return NULL;
42} 44}