aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wreadln.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/wreadln.c b/src/wreadln.c
index f10b8c23f..0bfc41408 100644
--- a/src/wreadln.c
+++ b/src/wreadln.c
@@ -122,16 +122,11 @@ wreadln_insert_byte(struct wreadln *wr, gint key)
{
if (strlen(wr->line + wr->cursor)) { /* if the cursor is */
/* not at the last pos */
- gchar *tmp = NULL;
gsize rest = strlen(wr->line + wr->cursor) + 1;
- tmp = g_malloc0(rest);
- g_strlcpy (tmp, wr->line + wr->cursor, rest);
+ memmove(wr->line + wr->cursor + 1,
+ wr->line + wr->cursor, rest);
wr->line[wr->cursor] = key;
- wr->line[wr->cursor + 1] = 0;
- g_strlcat(&wr->line[wr->cursor + 1], tmp, rest);
- g_free(tmp);
- cursor_move_right(wr);
} else {
wr->line[wr->cursor + 1] = 0;
wr->line[wr->cursor] = key;