diff options
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 |