summaryrefslogtreecommitdiff
path: root/src/strgen/strgen.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-11-28 19:39:04 +0000
committeryexo <yexo@openttd.org>2010-11-28 19:39:04 +0000
commit35af4630460a87765ac36145e24e890a5901bce5 (patch)
tree16f0f4ce634f3a07d4edf9229541967bcedfe40c /src/strgen/strgen.cpp
parent9b54d4266ba7541c2f35a4f049dec23ad094e464 (diff)
downloadopenttd-35af4630460a87765ac36145e24e890a5901bce5.tar.xz
(svn r21346) -Fix (r2592): buffer overflow in strgen for strings with very large arguments
Diffstat (limited to 'src/strgen/strgen.cpp')
-rw-r--r--src/strgen/strgen.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp
index f5a95b51e..23f9ed56f 100644
--- a/src/strgen/strgen.cpp
+++ b/src/strgen/strgen.cpp
@@ -56,6 +56,8 @@ static const char *_output_filename = NULL; ///< The filename of the output, so
static int _cur_line; ///< The current line we're parsing in the input file
static int _errors, _warnings, _show_todo;
+static const size_t MAX_COMMAND_PARAM_SIZE = 100; ///< Maximum size of every command block, not counting the name of the command itself
+
struct LangString {
char *name; // Name of the string
char *english; // English text
@@ -489,7 +491,7 @@ static const CmdStruct *ParseCommandString(const char **str, char *param, int *a
strgen_error("Missing } from command '%s'", start);
return NULL;
}
- if (s - start == 250) error("param command too long");
+ if (s - start == MAX_COMMAND_PARAM_SIZE) error("param command too long");
*param++ = c;
}
}
@@ -578,7 +580,7 @@ static void HandlePragma(char *str, bool master)
static void ExtractCommandString(ParsedCommandStruct *p, const char *s, bool warnings)
{
- char param[100];
+ char param[MAX_COMMAND_PARAM_SIZE];
int argno;
int argidx = 0;
int casei;
@@ -857,7 +859,7 @@ static void MakeHashOfStrings()
if (ls != NULL) {
const CmdStruct *cs;
const char *s;
- char buf[256];
+ char buf[MAX_COMMAND_PARAM_SIZE];
int argno;
int casei;
@@ -1012,7 +1014,7 @@ static void PutCommandString(const char *str)
continue;
}
- char param[256];
+ char param[MAX_COMMAND_PARAM_SIZE];
int argno;
int casei;
const CmdStruct *cs = ParseCommandString(&str, param, &argno, &casei);