Ver código fonte

Properly handle empty filters

master
sin 9 anos atrás
pai
commit
30ca80310a
1 arquivos alterados com 2 adições e 1 exclusões
  1. +2
    -1
      noice.c

+ 2
- 1
noice.c Ver arquivo

@@ -331,10 +331,11 @@ readln(void)

echo();
curs_set(TRUE);
memset(ln, 0, sizeof(ln));
getnstr(ln, sizeof(ln) - 1);
noecho();
curs_set(FALSE);
return strdup(ln);
return strlen(ln) ? strdup(ln) : NULL;
}

/*


Carregando…
Cancelar
Salvar