(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 85569a4559
commit bb48bfe1df

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);
}
/**