diff options
author | rubidium <rubidium@openttd.org> | 2009-03-06 01:23:25 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-03-06 01:23:25 +0000 |
commit | 86ca408d469811d13a15d5c7a671feda38126eb0 (patch) | |
tree | 8972c2c7b9b1ab7c2b41b46cd9a44f1bb0fbd9bd /src/video | |
parent | c3a7e6b693716232fd2aefab3f36bd555620b563 (diff) | |
download | openttd-86ca408d469811d13a15d5c7a671feda38126eb0.tar.xz |
(svn r15626) -Fix [FS#2698]: UTF8 string handling could cause buffer overruns.
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/dedicated_v.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp index 2a997d9f9..456ee7b84 100644 --- a/src/video/dedicated_v.cpp +++ b/src/video/dedicated_v.cpp @@ -235,7 +235,7 @@ static void DedicatedHandleKeyInput() break; } } - str_validate(input_line); + str_validate(input_line, lastof(input_line)); IConsoleCmdExec(input_line); // execute command } |