From: Sebastian Harl Date: Mon, 21 Apr 2014 17:56:02 +0000 (+0200) Subject: sysdbd: Free the config parse tree after finishing config work. X-Git-Tag: sysdb-0.1.0~105 X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=commitdiff_plain;h=0fe9414e397f0e07c6cb68b1503734cd678b5364 sysdbd: Free the config parse tree after finishing config work. --- diff --git a/src/tools/sysdbd/configfile.c b/src/tools/sysdbd/configfile.c index 5a36c22..af73353 100644 --- a/src/tools/sysdbd/configfile.c +++ b/src/tools/sysdbd/configfile.c @@ -297,6 +297,8 @@ daemon_parse_config(const char *filename) retval = status; } } + + oconfig_free(ci); return retval; } /* daemon_parse_config */