Move cleanup functions to the right place

This commit is contained in:
Baptiste Daroussin 2015-05-31 12:04:06 +00:00
parent 3628ed585b
commit 7fc593dd82
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283818

View File

@ -357,9 +357,10 @@ read_userconfig(char const * file)
break;
}
}
free(buf);
fclose(fp);
}
free(buf);
fclose(fp);
return (&config);
}