From 61a36af45d9342b65d16a3d29818cf4c70ec992d Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 2 Sep 2010 12:03:11 +0200 Subject: lineedit: fix completion with Unicode chars function old new delta read_line_input 4966 5002 +36 bb_wcstombs 170 159 -11 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/1 up/down: 36/-11) Total: 25 bytes Signed-off-by: Denys Vlasenko --- libbb/unicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb/unicode.c') diff --git a/libbb/unicode.c b/libbb/unicode.c index c4b5f86ee..70c6abe00 100644 --- a/libbb/unicode.c +++ b/libbb/unicode.c @@ -131,7 +131,7 @@ size_t FAST_FUNC wcstombs(char *dest, const wchar_t *src, size_t n) size_t len = wcrtomb_internal(tbuf, wc); if (len > n) - len = n; + break; memcpy(dest, tbuf, len); if (wc == L'\0') return org_n - n; -- cgit v1.2.3