mirror of
https://github.com/jarun/nnn.git
synced 2024-11-17 16:39:14 +00:00
Revert "malloc() mem those persist through program runtime"
This reverts commit b84ad2d552
.
This commit is contained in:
parent
1508874b5a
commit
48415c5e1c
|
@ -6560,7 +6560,9 @@ static bool cdprep(char *lastdir, char *lastname, char *path, char *newpath)
|
|||
|
||||
static bool browse(char *ipath, const char *session, int pkey)
|
||||
{
|
||||
char *newpath = malloc(PATH_MAX), *rundir = malloc(PATH_MAX), *runfile = malloc(NAME_MAX + 1);
|
||||
char newpath[PATH_MAX] __attribute__ ((aligned)),
|
||||
rundir[PATH_MAX] __attribute__ ((aligned)),
|
||||
runfile[NAME_MAX + 1] __attribute__ ((aligned));
|
||||
char *path, *lastdir, *lastname, *dir, *tmp;
|
||||
pEntry pent;
|
||||
enum action sel;
|
||||
|
@ -6720,7 +6722,7 @@ nochange:
|
|||
|
||||
/* If STDIN is no longer a tty (closed) we should exit */
|
||||
if (!isatty(STDIN_FILENO) && !g_state.picker)
|
||||
return EXIT_FAILURE; // NOLINT
|
||||
return EXIT_FAILURE;
|
||||
|
||||
sel = nextsel(presel);
|
||||
if (presel)
|
||||
|
|
Loading…
Reference in a new issue