Procházet zdrojové kódy

Fix 100% CPU usage if STDIN closes

master
KlZX Arun Prakash Jana před 5 roky
rodič
revize
80c2c469da
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. +5
    -1
      src/nnn.c

+ 5
- 1
src/nnn.c Zobrazit soubor

@@ -3447,6 +3447,10 @@ nochange:
goto begin;
}

/* If STDIN is no longer a tty (closed) we should exit */
if (!isatty(STDIN_FILENO) && !cfg.picker)
return;

sel = nextsel(presel);
if (presel)
presel = 0;
@@ -4790,7 +4794,7 @@ int main(int argc, char *argv[])
}

/* Confirm we are in a terminal */
if (!cfg.picker && !(isatty(0) && isatty(1)))
if (!cfg.picker && !(isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)))
exit(1);

/* Get the context colors; copier used as tmp var */


Načítá se…
Zrušit
Uložit