From 4eebeff58cf65654f0ad2083b83f701c761dcbd8 Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 15 May 2005 18:50:55 +0000 Subject: (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. --- main_gui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main_gui.c') diff --git a/main_gui.c b/main_gui.c index 25a050246..4fcc64f11 100644 --- a/main_gui.c +++ b/main_gui.c @@ -63,7 +63,8 @@ void HandleOnEditText(WindowEvent *e) { const char *b = e->edittext.str; int id; - memcpy(_decode_parameters, b, 32); + + _cmd_text = b; id = _rename_id; -- cgit v1.2.3-54-g00ecf