mbstowcs() returns the codepoints

This commit is contained in:
Arun Prakash Jana 2017-08-25 18:27:06 +05:30
parent b854f396cf
commit ccdb95f3ab
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 3 deletions

5
nnn.c
View File

@ -1013,10 +1013,9 @@ xreadline(char *fname)
size_t buflen = NAME_MAX - 1;
DPRINTF_S(fname)
mbstowcs(buf, fname, NAME_MAX);
len = pos = wcslen(buf);
len = pos = mbstowcs(buf, fname, NAME_MAX);
/* For future: handle NULL, say for a new name */
if (len <= 0) {
if (len == (size_t)-1) {
buf[0] = '\0';
len = pos = 0;
}