summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorJfreegman <Jfreegman@gmail.com>2013-08-10 16:28:40 -0400
committerJfreegman <Jfreegman@gmail.com>2013-08-10 16:28:40 -0400
commit401cbeff37086556d4ec0ee0320e8cb96d2b1b08 (patch)
treea2511219106ef918591a57785eb28ed97f984b9e /testing
parent216efc91a555ef5bb10ae2f9794ef16f07c303b2 (diff)
fix memory leak
Diffstat (limited to 'testing')
-rw-r--r--testing/toxic/configdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/toxic/configdir.c b/testing/toxic/configdir.c
index d91d0804..6cbb06bc 100644
--- a/testing/toxic/configdir.c
+++ b/testing/toxic/configdir.c
@@ -129,8 +129,8 @@ int create_user_config_dir(char *path)
129 free(fullpath); 129 free(fullpath);
130 return -1; 130 return -1;
131 } 131 }
132 132
133 #endif 133 #endif
134 134 free(fullpath);
135 return 0; 135 return 0;
136} 136}