mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Fix double free when starting in list mode
This commit is contained in:
parent
a563c1a553
commit
4c18f22587
|
@ -4236,7 +4236,9 @@ static void rmlistpath()
|
|||
DPRINTF_S(__FUNCTION__);
|
||||
DPRINTF_S(listpath);
|
||||
spawn("rm -rf", listpath, NULL, NULL, F_NOTRACE | F_MULTI);
|
||||
free(listpath);
|
||||
/* Do not free if program was started in list mode */
|
||||
if (listpath != initpath)
|
||||
free(listpath);
|
||||
listpath = NULL;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue