diff options
-rw-r--r-- | dmenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -517,9 +517,9 @@ insert: | |||
517 | case XK_Tab: | 517 | case XK_Tab: |
518 | if (!sel) | 518 | if (!sel) |
519 | return; | 519 | return; |
520 | strncpy(text, sel->text, sizeof text - 1); | 520 | cursor = strnlen(sel->text, sizeof text - 1); |
521 | memcpy(text, sel->text, cursor); | ||
521 | text[sizeof text - 1] = '\0'; | 522 | text[sizeof text - 1] = '\0'; |
522 | cursor = strlen(text); | ||
523 | match(); | 523 | match(); |
524 | break; | 524 | break; |
525 | } | 525 | } |