Explorar el Código

Fix double free when starting in list mode

master
Arun Prakash Jana hace 5 años
padre
commit
4c18f22587
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: A75979F35C080412
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      src/nnn.c

+ 3
- 1
src/nnn.c Ver fichero

@@ -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;
}
}


Cargando…
Cancelar
Guardar