diff options
Diffstat (limited to 'libbb/lineedit.c')
-rw-r--r-- | libbb/lineedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 2e16e6a..032da24 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c @@ -1552,7 +1552,7 @@ int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, li vi_case(CTRL('U')|vbit:) /* Control-U -- Clear line before cursor */ if (cursor) { - strcpy(command, command + cursor); + overlapping_strcpy(command, command + cursor); command_len -= cursor; redraw(cmdedit_y, command_len); } |