mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Terminate string only once
This commit is contained in:
parent
b99a28a376
commit
6d9f4b3710
|
@ -1884,10 +1884,10 @@ static char *unescape(const char *str, uint maxcols)
|
|||
|
||||
if (maxcols) {
|
||||
len = lencount = wcswidth(wbuf, len);
|
||||
while (len > maxcols) {
|
||||
wbuf[--lencount] = L'\0';
|
||||
len = wcswidth(wbuf, lencount);
|
||||
}
|
||||
while (len > maxcols)
|
||||
len = wcswidth(wbuf, --lencount);
|
||||
|
||||
wbuf[lencount] = L'\0';
|
||||
}
|
||||
|
||||
while (*buf) {
|
||||
|
|
Loading…
Reference in a new issue