Arun Prakash Jana 6 лет назад
Родитель
Сommit
59db99f75d
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: A75979F35C080412
1 измененных файлов: 3 добавлений и 4 удалений
  1. +3
    -4
      src/nnn.c

+ 3
- 4
src/nnn.c Просмотреть файл

@@ -974,19 +974,18 @@ static bool initcurses(void)
return TRUE;
}

/* NOTE: There's no NULL check here */

/* No NULL check here as spawn() guards against it */
static int parseargs(char *line, char **argv)
{
int count = 0;

argv[count++] = line;

while (*line) {
while (*line) { // NOLINT
if (isblank(*line)) {
*line++ = '\0';

if (!*line)
if (!*line) // NOLINT
return count;

argv[count++] = line;


||||||
x
 
000:0
Загрузка…
Отмена
Сохранить