Don't return NULL on 0 length input

A 0 length string is still a valid input and should be treated as such, a NULL return should be reserved for when errors occur during line editing or EOF is reached.

Merges https://github.com/espressif/esp-idf/pull/4926
pull/5191/head
MadnessASAP 2020-03-12 14:57:27 -07:00 zatwierdzone przez Ivan Grokhotkov
rodzic 4d53c137e6
commit dfd4227e7a
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -979,11 +979,11 @@ char *linenoise(const char *prompt) {
} else {
count = linenoiseDumb(buf, LINENOISE_MAX_LINE, prompt);
}
if (count > 0) {
if (count >= 0) {
sanitize(buf);
count = strlen(buf);
}
if (count <= 0) {
if (count < 0) {
free(buf);
return NULL;
}