Explorar el Código

Simplify check

master
Arun Prakash Jana hace 4 años
padre
commit
37e5e6189a
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 1 adiciones y 3 borrados
  1. +1
    -3
      src/nnn.c

+ 1
- 3
src/nnn.c Ver fichero

@@ -4321,13 +4321,11 @@ static void readpipe(int fd, char **path, char **lastname, char **lastdir)
char ctx, *nextpath = NULL;
ssize_t len = read_nointr(fd, g_buf, 1);

if (len != 1)
if (len != 1 || g_buf[0] < '0')
return;

if (g_buf[0] == '+')
ctx = (char)(get_free_ctx() + 1);
else if (g_buf[0] < '0')
return;
else {
ctx = g_buf[0] - '0';
if (ctx > CTX_MAX)


Cargando…
Cancelar
Guardar