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

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

@@ -1878,8 +1878,6 @@ END:
*/ */
static char *getreadline(char *prompt, char *path, char *curpath, int *presel) static char *getreadline(char *prompt, char *path, char *curpath, int *presel)
{ {
char *input;

/* Switch to current path for readline(3) */ /* Switch to current path for readline(3) */
if (chdir(path) == -1) { if (chdir(path) == -1) {
printwarn(presel); printwarn(presel);
@@ -1888,7 +1886,7 @@ static char *getreadline(char *prompt, char *path, char *curpath, int *presel)


exitcurses(); exitcurses();


input = readline(prompt);
char *input = readline(prompt);


refresh(); refresh();


@@ -4155,7 +4153,7 @@ nochange:
goto nochange; goto nochange;
} }
#endif #endif
if (tmp[0])
if (tmp && tmp[0]) // NOLINT
spawn(shell, "-c", tmp, path, F_CLI); spawn(shell, "-c", tmp, path, F_CLI);
} }




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