Do not use NULL client when source-file finishes, GitHub issue 2707.

pull/2739/head
Nicholas Marriott 2021-05-12 07:08:58 +01:00
parent 5ea6ccbb7f
commit 8aa34f616f
1 changed files with 3 additions and 1 deletions

View File

@ -67,7 +67,9 @@ cmd_source_file_complete(struct client *c, struct cmd_source_file_data *cdata)
struct cmdq_item *new_item;
if (cfg_finished) {
if (cdata->retval == CMD_RETURN_ERROR && c->session == NULL)
if (cdata->retval == CMD_RETURN_ERROR &&
c != NULL &&
c->session == NULL)
c->retval = 1;
new_item = cmdq_get_callback(cmd_source_file_complete_cb, NULL);
cmdq_insert_after(cdata->after, new_item);