Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Nevins <jacobn@chiark.greenend.org.uk>2014-11-09 03:54:35 +0300
committerJacob Nevins <jacobn@chiark.greenend.org.uk>2014-11-09 03:54:35 +0300
commit5429effd8e611c267e3ab117586821c051b2719a (patch)
treeee2e98484308929bdc93e1296306d78b62c3843c /logging.c
parentf662ff790c5bd2d133b8da8c1152c994499ab4f7 (diff)
Free copied Conf in log_free().
Thanks to Corey Stup for pointing it out.
Diffstat (limited to 'logging.c')
-rw-r--r--logging.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/logging.c b/logging.c
index 868ff987..26634f77 100644
--- a/logging.c
+++ b/logging.c
@@ -373,6 +373,7 @@ void log_free(void *handle)
bufchain_clear(&ctx->queue);
if (ctx->currlogfilename)
filename_free(ctx->currlogfilename);
+ conf_free(ctx->conf);
sfree(ctx);
}