ソースを参照

Terminate string only once

master
Arun Prakash Jana 6年前
コミット
6d9f4b3710
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更4行の追加4行の削除
  1. +4
    -4
      src/nnn.c

+ 4
- 4
src/nnn.c ファイルの表示

@@ -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) {


読み込み中…
キャンセル
保存