소스 검색

Remove redundant variable

master
Arun Prakash Jana 7 년 전
부모
커밋
2e3f013ce3
No known key found for this signature in database 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;
}



불러오는 중...
취소
저장