summaryrefslogtreecommitdiff
path: root/ship_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
commitfea596567944fba8d9d4ead62d948db14690fdf1 (patch)
treead6dc27f46725e511e93e061f51683311027ec65 /ship_gui.c
parent6cd410afbb3cedff9f6d86fc30dbd4e67817ebc9 (diff)
downloadopenttd-fea596567944fba8d9d4ead62d948db14690fdf1.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 'ship_gui.c')
-rw-r--r--ship_gui.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/ship_gui.c b/ship_gui.c
index 1e1428de2..70e39c49e 100644
--- a/ship_gui.c
+++ b/ship_gui.c
@@ -236,11 +236,11 @@ do_change_service_int:
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_NAME_VEHICLE | CMD_MSG(STR_9832_CAN_T_NAME_SHIP));
+ if (e->edittext.str[0] != '\0') {
+ _cmd_text = e->edittext.str;
+ DoCommandP(0, w->window_number, 0, NULL,
+ CMD_NAME_VEHICLE | CMD_MSG(STR_9832_CAN_T_NAME_SHIP));
+ }
} break;
}
@@ -378,11 +378,11 @@ static void NewShipWndProc(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, WP(w,buildtrain_d).rename_engine, 0, NULL, CMD_RENAME_ENGINE | CMD_MSG(STR_9839_CAN_T_RENAME_SHIP_TYPE));
+ if (e->edittext.str[0] != '\0') {
+ _cmd_text = e->edittext.str;
+ DoCommandP(0, WP(w, buildtrain_d).rename_engine, 0, NULL,
+ CMD_RENAME_ENGINE | CMD_MSG(STR_9839_CAN_T_RENAME_SHIP_TYPE));
+ }
} break;
case WE_RESIZE: