Bläddra i källkod

Remove redundant variable

master
Arun Prakash Jana 7 år sedan
förälder
incheckning
2e3f013ce3
Ingen känd nyckel hittad för denna signaturen i databasen GPG-nyckel ID: A75979F35C080412
1 ändrade filer med 4 tillägg och 4 borttagningar
  1. +4
    -4
      nnn.c

+ 4
- 4
nnn.c Visa fil

@@ -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;
}



Laddar…
Avbryt
Spara