Fixed bug #31796 (readline completion handler does not handle empty return

values).
This commit is contained in:
Ilia Alshanetsky 2005-02-03 22:45:36 +00:00
parent 996b464e30
commit 5879c5cf21

View File

@ -377,7 +377,7 @@ static char *_readline_command_generator(char *text,int state)
}
}
return NULL;
return strdup("");
}
static zval *_readline_string_zval(const char *str)