From 3c3271d9fce8cdd614f1d1b24bcebb3599aad930 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Sun, 24 Aug 2008 23:24:14 +0000 Subject: Close fd of config file after reconfiguration. --- sysdep/unix/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sysdep/unix') diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index da1ba37..4df4e9f 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -91,13 +91,16 @@ static int unix_read_config(struct config **cp, char *name) { struct config *conf = config_alloc(name); + int ret; *cp = conf; conf_fd = open(name, O_RDONLY); if (conf_fd < 0) return 0; cf_read_hook = cf_read; - return config_parse(conf); + ret = config_parse(conf); + close(conf_fd); + return ret; } static void -- cgit v1.2.3