diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-17 06:13:27 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-17 06:13:27 +0000 |
commit | 65deba3a350f760dacdb170fbecfa07edf4e4711 (patch) | |
tree | aa04b471d50b4cc7417c15f5e88fa588c8eafa2b /cmd-select-prompt.c | |
parent | 9642f0373f94d6015e66806c95ba1570c7bb06ea (diff) | |
download | rtmux-65deba3a350f760dacdb170fbecfa07edf4e4711.tar.gz rtmux-65deba3a350f760dacdb170fbecfa07edf4e4711.tar.bz2 rtmux-65deba3a350f760dacdb170fbecfa07edf4e4711.zip |
Memory could be leaked if a second prompt or message appeared while another was
still present, so add a separate prompt free callback and make the _clear
function responsible for calling it if necessary (rather than the individual
prompt callbacks). Also make both messages and prompts clear any existing when
a new is set.
In addition, the screen could be modified while the prompt is there, restore
the redraw-entire-screen behaviour on prompt clear; add a comment as a
reminder.
Diffstat (limited to 'cmd-select-prompt.c')
-rw-r--r-- | cmd-select-prompt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-select-prompt.c b/cmd-select-prompt.c index 8b707342..67bb8ff3 100644 --- a/cmd-select-prompt.c +++ b/cmd-select-prompt.c @@ -55,7 +55,7 @@ cmd_select_prompt_exec(struct cmd *self, struct cmd_ctx *ctx) if (c->prompt_string != NULL) return (0); - status_prompt_set(c, "index ", cmd_select_prompt_callback, c, 0); + status_prompt_set(c, "index ", cmd_select_prompt_callback, NULL, c, 0); return (0); } |