mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 22:09:23 +01:00
client: avoid segfault in iwctl quit
iwctl quit (running quit non-interactively) isn't a useful command, but it shouldn't segfault. Let's avoid calling readline functions if we haven't initialized readline in this run.
This commit is contained in:
parent
68089783b6
commit
3687f7947b
@ -890,7 +890,8 @@ void display_agent_prompt_release(const char *label)
|
|||||||
|
|
||||||
void display_quit(void)
|
void display_quit(void)
|
||||||
{
|
{
|
||||||
rl_crlf();
|
if (command_is_interactive_mode())
|
||||||
|
rl_crlf();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void window_change_signal_handler(void *user_data)
|
static void window_change_signal_handler(void *user_data)
|
||||||
|
Loading…
Reference in New Issue
Block a user