mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Fix buffer cleanup
This commit is contained in:
parent
01392d48ad
commit
6689870460
|
@ -3049,7 +3049,7 @@ static wchar_t *unescape(const char *str, uint maxcols)
|
||||||
size_t lencount = 0;
|
size_t lencount = 0;
|
||||||
|
|
||||||
#ifdef NOLOCALE
|
#ifdef NOLOCALE
|
||||||
memset(wbuf, 0, NAME_MAX + 1);
|
memset(wbuf, 0, (NAME_MAX + 1) * sizeof(wchar_t));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Convert multi-byte to wide char */
|
/* Convert multi-byte to wide char */
|
||||||
|
|
Loading…
Reference in a new issue