aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-06-26 18:20:53 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-06-26 18:20:53 +0000
commit42e24139788d76f00896005df0f745d9e022709a (patch)
treeccc08279c4c2f4162b42b07112ae3fe340c81358 /tmux.h
parentef7293379f00b85cb96dd0dff128bb503e87612b (diff)
downloadrtmux-42e24139788d76f00896005df0f745d9e022709a.tar.gz
rtmux-42e24139788d76f00896005df0f745d9e022709a.tar.bz2
rtmux-42e24139788d76f00896005df0f745d9e022709a.zip
Setting the cmdlist pointer in the bind-key to NULL to prevent it being freed
after the command is executing is bogus because it may still be needed if the same command is going to be executed again (for example if you "bind-key a bind-key b ..."). Making a copy is hard, so instead add a reference count to the cmd_list. While here, also print bind-key -n and the rest of the flags properly. Fixes problem reported by mcbride@.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 7d6c2e70..6b158cd7 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1161,7 +1161,10 @@ struct cmd {
TAILQ_ENTRY(cmd) qentry;
};
-TAILQ_HEAD(cmd_list, cmd);
+struct cmd_list {
+ int references;
+ TAILQ_HEAD(, cmd) list;
+};
struct cmd_entry {
const char *name;