diff options
author | tron <tron@openttd.org> | 2005-02-17 17:38:17 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-02-17 17:38:17 +0000 |
commit | 73c0f213633d023ff8063766338b4747f48b946d (patch) | |
tree | f4390c2c8b69242cbfe5fdc42d0c527f1f8b6283 | |
parent | f7991303e80c08f2b5518db3ca01e869ec78fcb4 (diff) | |
download | openttd-73c0f213633d023ff8063766338b4747f48b946d.tar.xz |
(svn r1883) -Fix: [1109400] Better test if a string actually contains any console command
-rw-r--r-- | console.c | 12 | ||||
-rw-r--r-- | console_cmds.c | 4 |
2 files changed, 11 insertions, 5 deletions
@@ -1094,8 +1094,16 @@ void IConsoleCmdExec(const char* cmdstr) uint i; uint l; - if (strlen(cmdstr) == 0) // only execute if there is something typed obviously - return; + for (; strchr("\n\r \t", *cmdstr) != NULL; ++cmdstr) { + switch (*cmdstr) { + case '\0': + case '#': + return; + + default: + break; + } + } if (_stdlib_con_developer) IConsolePrintF(_iconsole_color_debug, "CONDEBUG: execution_cmdline: %s", cmdstr); diff --git a/console_cmds.c b/console_cmds.c index adf67f202..ab0364bfd 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -611,9 +611,7 @@ DEF_CONSOLE_CMD(ConExec) fgets(cmd, sizeof(cmd), _script_file); while (!feof(_script_file) && _script_running) { - strtok(cmd, "\r\n#"); - if (strlen(cmd) > 0 && cmd[0] != '#') - IConsoleCmdExec(cmd); + IConsoleCmdExec(cmd); fgets(cmd, sizeof(cmd), _script_file); } |