summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2007-02-20 14:39:47 +0000
committerDarkvater <Darkvater@openttd.org>2007-02-20 14:39:47 +0000
commit2dd9066f8f6b72444942ebb9c961605583adcc58 (patch)
tree6ed6701fd74348b1f471e6b350d5dfcddf504e6d
parentfa16e74d01d8d7623259c468d813adc03583938d (diff)
downloadopenttd-2dd9066f8f6b72444942ebb9c961605583adcc58.tar.xz
(svn r8824) -Fix (r8821): don't use MSVC2005 runtime library-only _snwprintf_s function, but use 'insecure/deprecated' version and zero-terminate string ourselves. Thanks for testing glx.
-rw-r--r--src/win32.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/win32.cpp b/src/win32.cpp
index 017d62a2c..c3198d645 100644
--- a/src/win32.cpp
+++ b/src/win32.cpp
@@ -664,7 +664,8 @@ DIR *opendir(const wchar_t *path)
if (d != NULL) {
wchar_t search_path[MAX_PATH];
/* build search path for FindFirstFile */
- _snwprintf_s(search_path, lengthof(search_path), L"%s\\*", path);
+ _snwprintf(search_path, lengthof(search_path), L"%s\\*", path);
+ *lastof(search_path) = '\0';
d->hFind = FindFirstFileW(search_path, &d->fd);
if (d->hFind != INVALID_HANDLE_VALUE ||