Fix buffer cleanup

This commit is contained in:
Arun Prakash Jana 2020-04-26 10:59:01 +05:30
parent 01392d48ad
commit 6689870460
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

View File

@ -3049,7 +3049,7 @@ static wchar_t *unescape(const char *str, uint maxcols)
size_t lencount = 0;
#ifdef NOLOCALE
memset(wbuf, 0, NAME_MAX + 1);
memset(wbuf, 0, (NAME_MAX + 1) * sizeof(wchar_t));
#endif
/* Convert multi-byte to wide char */