diff options
author | Jfreegman <Jfreegman@gmail.com> | 2013-08-10 16:28:40 -0400 |
---|---|---|
committer | Jfreegman <Jfreegman@gmail.com> | 2013-08-10 16:28:40 -0400 |
commit | 401cbeff37086556d4ec0ee0320e8cb96d2b1b08 (patch) | |
tree | a2511219106ef918591a57785eb28ed97f984b9e | |
parent | 216efc91a555ef5bb10ae2f9794ef16f07c303b2 (diff) |
fix memory leak
-rw-r--r-- | testing/toxic/configdir.c | 4 |
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 | } |