(svn r15623) -Fix (r15615): close the files you've opened

This commit is contained in:
rubidium 2009-03-05 22:14:27 +00:00
parent 7dd6f218ef
commit f2f2a6d303
1 changed files with 1 additions and 0 deletions

View File

@ -344,6 +344,7 @@ static void GetFileTitle(const char *file, char *title, const char *last)
size_t read = fread(title, 1, last - title, f);
assert(title + read <= last);
title[read] = '\0';
FioFCloseFile(f);
}
/**