summaryrefslogtreecommitdiff
path: root/fileio.c
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2005-01-16 12:40:25 +0000
committerdarkvater <darkvater@openttd.org>2005-01-16 12:40:25 +0000
commit340a9ab6becbfe31f410aed4de4c5bbc2a2658e5 (patch)
tree8932fdc484e531a560f35ac1395b29429eec18e8 /fileio.c
parent8efc7866dd577091b4cde55cecf03c1af5c9c22a (diff)
downloadopenttd-340a9ab6becbfe31f410aed4de4c5bbc2a2658e5.tar.xz
(svn r1540) -Fix: since grf files are reopened on every load/new game, close the old opened to fix stale filehandles (thx tamlin)
Diffstat (limited to 'fileio.c')
-rw-r--r--fileio.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/fileio.c b/fileio.c
index bd5da1e6c..9baa5ed79 100644
--- a/fileio.c
+++ b/fileio.c
@@ -83,16 +83,20 @@ void FioReadBlock(void *ptr, uint size)
fread(ptr, 1, size, _fio.cur_fh);
}
+static inline void FioCloseFile(int slot)
+{
+ if (_fio.handles[slot] != NULL) {
+ fclose(_fio.handles[slot]);
+ _fio.handles[slot] = NULL;
+ }
+}
+
void FioCloseAll(void)
{
int i;
- for (i = 0; i != lengthof(_fio.handles); i++) {
- if (_fio.handles[i] != NULL) {
- fclose(_fio.handles[i]);
- _fio.handles[i] = NULL;
- }
- }
+ for (i = 0; i != lengthof(_fio.handles); i++)
+ FioCloseFile(i);
}
void FioOpenFile(int slot, const char *filename)
@@ -126,6 +130,7 @@ void FioOpenFile(int slot, const char *filename)
if (f == NULL)
error("Cannot open file '%s'", buf);
+ FioCloseFile(slot); // if file was opened before, close it
_fio.handles[slot] = f;
FioSeekToFile(slot << 24);
}