diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-22 15:54:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-22 15:54:29 +0000 |
commit | 2243cfbe7559e6cf48194ff95dcd7eb6df5fe41d (patch) | |
tree | d1cf60483d7b08f01f00610c5e341d26520557c9 /cmd.c | |
parent | d644e5143fbce243ddcca468a1b8a1d5bfd21b34 (diff) | |
download | rtmux-2243cfbe7559e6cf48194ff95dcd7eb6df5fe41d.tar.gz rtmux-2243cfbe7559e6cf48194ff95dcd7eb6df5fe41d.tar.bz2 rtmux-2243cfbe7559e6cf48194ff95dcd7eb6df5fe41d.zip |
Need to set clients in context before changing their reference count.
Diffstat (limited to 'cmd.c')
-rw-r--r-- | cmd.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -134,13 +134,16 @@ int cmd_find_index_offset(const char *, struct session *, int *); struct window_pane *cmd_find_pane_offset(const char *, struct winlink *); struct cmd_ctx * -cmd_get_ctx(void) +cmd_get_ctx(struct client *cmdclient, struct client *curclient) { struct cmd_ctx *ctx; ctx = xcalloc(1, sizeof *ctx); ctx->references = 0; + ctx->cmdclient = cmdclient; + ctx->curclient = curclient; + cmd_ref_ctx(ctx); return (ctx); } |