Don't boke when figuring out working directory from configuration file.

This commit is contained in:
nicm
2013-10-10 12:28:38 +00:00
parent 7936ce3874
commit 909e1c1a86
3 changed files with 3 additions and 3 deletions

View File

@ -115,7 +115,7 @@ cmd_new_session_exec(struct cmd *self, struct cmd_q *cmdq)
return (CMD_RETURN_ERROR);
}
cwd = fd;
} else if (c->session == NULL)
} else if (c != NULL && c->session == NULL)
cwd = c->cwd;
else if ((c0 = cmd_current_client(cmdq)) != NULL)
cwd = c0->session->cwd;