summaryrefslogtreecommitdiff
path: root/fileio.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-11-28 20:55:16 +0000
committerDarkvater <Darkvater@openttd.org>2006-11-28 20:55:16 +0000
commitb9eed2167919dc370c714c9ab08bc9b0a0e10a5a (patch)
tree5c4e14a6ee9c764ba23ada2a4c72dcc0ade951c2 /fileio.c
parentea965a4adf955d8a046959dd8c3c71f3d1ab3230 (diff)
downloadopenttd-b9eed2167919dc370c714c9ab08bc9b0a0e10a5a.tar.xz
(svn r7280) -Codechange: Replace some sprintf() functions with the safer snprintf() functions
Diffstat (limited to 'fileio.c')
-rw-r--r--fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fileio.c b/fileio.c
index b0206820c..2bd01f16d 100644
--- a/fileio.c
+++ b/fileio.c
@@ -117,7 +117,7 @@ FILE *FioFOpenFile(const char *filename)
FILE *f;
char buf[MAX_PATH];
- sprintf(buf, "%s%s", _path.data_dir, filename);
+ snprintf(buf, lengthof(buf), "%s%s", _path.data_dir, filename);
f = fopen(buf, "rb");
#if !defined(WIN32)
@@ -128,7 +128,7 @@ FILE *FioFOpenFile(const char *filename)
#if defined SECOND_DATA_DIR
// tries in the 2nd data directory
if (f == NULL) {
- sprintf(buf, "%s%s", _path.second_data_dir, filename);
+ snprintf(buf, lengthof(buf), "%s%s", _path.second_data_dir, filename);
strtolower(buf + strlen(_path.second_data_dir) - 1);
f = fopen(buf, "rb");
}