Sfoglia il codice sorgente

Free readline buffer in corner cases

master
Arun Prakash Jana 5 anni fa
parent
commit
3e4797f728
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A75979F35C080412
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. +5
    -1
      src/nnn.c

+ 5
- 1
src/nnn.c Vedi File

@@ -3830,6 +3830,8 @@ nochange:

if (chdir(ipath) == -1) {
printwarn();
if (tmp)
free(tmp);
goto nochange;
}

@@ -3839,8 +3841,10 @@ nochange:
spawn(shell, "-c", tmp, path, F_CLI);
/* readline finishing touches */
add_history(tmp);
free(tmp);
}

if (tmp)
free(tmp);
}
#endif
}


Loading…
Annulla
Salva