From 77a7c02435179d3e4208cf8588d37bbd124b788e Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 1 Apr 2020 12:15:44 -0400 Subject: Pass correct length to mbstowcs Too used to sizeof being the right thing for regular strings. --- edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'edit.c') 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(); -- cgit 1.4.1