diff options
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-decode.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c index 6908314..5b1a7e0 100644 --- a/gdb/cli/cli-decode.c +++ b/gdb/cli/cli-decode.c @@ -1112,11 +1112,7 @@ lookup_cmd_1 (char **text, struct cmd_list_element *clist, command = (char *) alloca (len + 1); - for (tmp = 0; tmp < len; tmp++) - { - char x = (*text)[tmp]; - command[tmp] = x; - } + memcpy (command, *text, len); command[len] = '\0'; /* Look it up. */ @@ -1468,11 +1464,7 @@ lookup_cmd_composition (char *text, it's length is len). We copy this into a local temporary */ command = (char *) alloca (len + 1); - for (tmp = 0; tmp < len; tmp++) - { - char x = text[tmp]; - command[tmp] = x; - } + memcpy (command, text, len); command[len] = '\0'; /* Look it up. */ |