diff options
author | rubidium <rubidium@openttd.org> | 2008-09-29 16:27:02 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-09-29 16:27:02 +0000 |
commit | 5ab74534da3f94cd1c43bc438dcc0d31b23408e5 (patch) | |
tree | 43b0c8873ef3d08bb3099e46a3bc152bc8cd010d /src/video | |
parent | d34da3cadbd0e7776244fc45915f23b1e9f28c7f (diff) | |
download | openttd-5ab74534da3f94cd1c43bc438dcc0d31b23408e5.tar.xz |
(svn r14414) -Fix: replace instances of strncpy with strecpy as strncpy doesn't guarantee the resulting string is '\0'-terminated.
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/dedicated_v.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp index 08fd87d28..6577bd6b7 100644 --- a/src/video/dedicated_v.cpp +++ b/src/video/dedicated_v.cpp @@ -226,7 +226,8 @@ static void DedicatedHandleKeyInput() if (fgets(input_line, lengthof(input_line), stdin) == NULL) return; #else /* Handle console input, and singal console thread, it can accept input again */ - strncpy(input_line, _win_console_thread_buffer, lengthof(input_line)); + assert_compile(lengthof(_win_console_thread_buffer) <= lengthof(input_line)); + strcpy(input_line, _win_console_thread_buffer); SetEvent(_hWaitForInputHandling); #endif |