Fix minor resource leak in a function.

Reviewed by:	luigi
MFC after:	1 week
This commit is contained in:
Alexander Leidinger 2009-11-21 10:46:49 +00:00
parent 96b4300c62
commit ac2e492b19
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=199626

View File

@ -650,6 +650,8 @@ load_extra_delays(const char *filename, struct dn_pipe *p)
}
}
fclose (f);
if (samples == -1) {
warnx("'%s' not found, assuming 100", ED_TOK_SAMPLES);
samples = 100;