summary refs log tree commit diff
path: root/edit.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-01 12:15:44 -0400
committerJune McEnroe <june@causal.agency>2020-04-01 12:15:44 -0400
commit77a7c02435179d3e4208cf8588d37bbd124b788e (patch)
tree7aac2211d07ce3df78ac73d1c000110cc1bfc993 /edit.c
parentAdd note about building LibreSSL manually (diff)
downloadcatgirl-77a7c02435179d3e4208cf8588d37bbd124b788e.tar.gz
catgirl-77a7c02435179d3e4208cf8588d37bbd124b788e.zip
Pass correct length to mbstowcs
Too used to sizeof being the right thing for regular strings.
Diffstat (limited to '')
-rw-r--r--edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit.c b/edit.c
index ed83447..bd258b1 100644
--- a/edit.c
+++ b/edit.c
@@ -143,7 +143,7 @@ static void tabComplete(uint id) {
 	}
 
 	wchar_t wcs[Cap];
-	n = mbstowcs(wcs, comp, sizeof(wcs));
+	n = mbstowcs(wcs, comp, Cap);
 	assert(n != (size_t)-1);
 	if (tab.pos + n + 2 > Cap) {
 		completeReject();
2-10 03:58:25 -0500'>2020-02-10Avoid coloring mentions if there are control codesJune McEnroe 2020-02-10Recalculate unreadLines on reflowJune McEnroe 2020-02-10Only make windows hotterJune McEnroe 2020-02-10Always increase unreadLinesJune McEnroe 2020-02-10Move scroll marker on resizeJune McEnroe 2020-02-10Update line count for words longer than linesJune McEnroe 2020-02-10Simplify mark, heat, unread trackingJune McEnroe 2020-02-10Update prompt when own nick changesJune McEnroe 2020-02-10Match URLs surrounded by parenthesesJune McEnroe 2020-02-10Fix M-a so it properly cycles back to where it startedJune McEnroe 2020-02-09Add M-lJune McEnroe 2020-02-09Add /whoisJune McEnroe 2020-02-09Add /msgJune McEnroe