From 2dd9066f8f6b72444942ebb9c961605583adcc58 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 20 Feb 2007 14:39:47 +0000 Subject: (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. --- src/win32.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 || -- cgit v1.2.3-54-g00ecf