summaryrefslogtreecommitdiff
path: root/town_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-05-15 18:50:55 +0000
committertron <tron@openttd.org>2005-05-15 18:50:55 +0000
commit4eebeff58cf65654f0ad2083b83f701c761dcbd8 (patch)
treead6dc27f46725e511e93e061f51683311027ec65 /town_gui.c
parent0375f303364393e80cae54705c6e2177ed0674b8 (diff)
downloadopenttd-4eebeff58cf65654f0ad2083b83f701c761dcbd8.tar.xz
(svn r2324) Introduce _cmd_text for passing strings with a command instead of abusing _decode_parameters as text buffer. This should prevent several possible buffer overruns and is a bit cleaner to use. As bonus it reduces the size of most command packets by 79 bytes.
Diffstat (limited to 'town_gui.c')
-rw-r--r--town_gui.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/town_gui.c b/town_gui.c
index 58e258357..17c98fd20 100644
--- a/town_gui.c
+++ b/town_gui.c
@@ -276,11 +276,11 @@ static void TownViewWndProc(Window *w, WindowEvent *e)
break;
case WE_ON_EDIT_TEXT: {
- const char *b = e->edittext.str;
- if (*b == 0)
- return;
- memcpy(_decode_parameters, b, 32);
- DoCommandP(0, w->window_number, 0, NULL, CMD_RENAME_TOWN | CMD_MSG(STR_2008_CAN_T_RENAME_TOWN));
+ if (e->edittext.str[0] != '\0') {
+ _cmd_text = e->edittext.str;
+ DoCommandP(0, w->window_number, 0, NULL,
+ CMD_RENAME_TOWN | CMD_MSG(STR_2008_CAN_T_RENAME_TOWN));
+ }
} break;
}
}