Bugfix: close file handle after parsing

This commit is contained in:
Michael Stapelberg 2009-12-11 17:57:42 +01:00
parent e5c4fa6c1c
commit 17082ef5b7
1 changed files with 1 additions and 0 deletions

View File

@ -166,6 +166,7 @@ static void parse_configuration(const char *override_configpath) {
die("Neither \"%s\" nor /etc/i3/config could be opened\n", globbed); die("Neither \"%s\" nor /etc/i3/config could be opened\n", globbed);
parse_file("/etc/i3/config"); parse_file("/etc/i3/config");
fclose(handle);
return; return;
} }