aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2022-09-02 19:09:50 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2022-09-02 19:09:50 +0200
commit1e8c5b68f4881bd4ae257c780fd41f129c79f419 (patch)
tree169f5c06333acd22a1cf6d24673d0b2b8cb79fa6
parent528d39b011afb7ef6fd794ba6b74155d4e69bc68 (diff)
downloaddmenu-1e8c5b68f4881bd4ae257c780fd41f129c79f419.tar.zst
fix a regression in the previous commit for tab complete
Reported by Santtu Lakkala <inz@inz.fi>, thanks!
-rw-r--r--dmenu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c
index 6b285df..818313a 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -519,7 +519,7 @@ insert:
return;
cursor = strnlen(sel->text, sizeof text - 1);
memcpy(text, sel->text, cursor);
- text[sizeof text - 1] = '\0';
+ text[cursor] = '\0';
match();
break;
}