From 5429effd8e611c267e3ab117586821c051b2719a Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Sun, 9 Nov 2014 00:54:35 +0000 Subject: [PATCH] Free copied Conf in log_free(). Thanks to Corey Stup for pointing it out. --- logging.c | 1 + 1 file changed, 1 insertion(+) 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); }