mirror of
https://github.com/tmate-io/tmate.git
synced 2026-01-23 02:24:06 +00:00
Avoid use of uninitialized variable, from Thomas Adam.
This commit is contained in:
parent
c52548f6fd
commit
325396046a
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ cmd_switch_client_exec(struct cmd *self, struct cmd_q *cmdq)
|
|||
{
|
||||
struct args *args = self->args;
|
||||
struct client *c;
|
||||
struct session *s;
|
||||
struct session *s = NULL;
|
||||
struct winlink *wl = NULL;
|
||||
struct window *w = NULL;
|
||||
struct window_pane *wp = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue