浏览代码

Remove redundant variable

master
Arun Prakash Jana 7 年前
父节点
当前提交
2e3f013ce3
找不到此签名对应的密钥 GPG 密钥 ID: A75979F35C080412
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      nnn.c

+ 4
- 4
nnn.c 查看文件

@@ -1168,7 +1168,7 @@ unescape(const char *str, uint maxcols)
static char buffer[PATH_MAX];
static wchar_t wbuf[PATH_MAX];
static wchar_t *buf;
static size_t len, width;
static size_t len;

buffer[0] = '\0';
buf = wbuf;
@@ -1176,10 +1176,10 @@ unescape(const char *str, uint maxcols)
/* Convert multi-byte to wide char */
len = mbstowcs(wbuf, str, PATH_MAX);

if (maxcols) {
width = wcswidth(wbuf, len);
if (maxcols && len > maxcols) {
len = wcswidth(wbuf, len);

if (width > maxcols)
if (len > maxcols)
wbuf[maxcols] = 0;
}



正在加载...
取消
保存