diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-07-10 11:53:01 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-07-10 11:53:01 +0000 |
commit | df912e3540968a2a0b266e523ecc08bb2dc0ca20 (patch) | |
tree | c2c59d025e08aab048b251d1711ed655cdf115f6 /window-choose.c | |
parent | a3391692ad5800ca034bbbdcd803924fc4e392ee (diff) | |
download | rtmux-df912e3540968a2a0b266e523ecc08bb2dc0ca20.tar.gz rtmux-df912e3540968a2a0b266e523ecc08bb2dc0ca20.tar.bz2 rtmux-df912e3540968a2a0b266e523ecc08bb2dc0ca20.zip |
xfree is not particularly helpful, remove it. From Thomas Adam.
Diffstat (limited to 'window-choose.c')
-rw-r--r-- | window-choose.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/window-choose.c b/window-choose.c index ed951661..58ac80ee 100644 --- a/window-choose.c +++ b/window-choose.c @@ -19,6 +19,7 @@ #include <sys/types.h> #include <ctype.h> +#include <stdlib.h> #include <string.h> #include "tmux.h" @@ -152,12 +153,12 @@ window_choose_free(struct window_pane *wp) item = &ARRAY_ITEM(&data->list, i); if (data->freefn != NULL && item->wcd != NULL) data->freefn(item->wcd); - xfree(item->name); + free(item->name); } ARRAY_FREE(&data->list); screen_free(&data->screen); - xfree(data); + free(data); } void @@ -493,7 +494,7 @@ window_choose_ctx(struct window_choose_data *cdata) if (cause != NULL) { *cause = toupper((u_char) *cause); status_message_set(cdata->client, "%s", cause); - xfree(cause); + free(cause); } return; } @@ -544,7 +545,7 @@ window_choose_add_window(struct window_pane *wp, struct cmd_ctx *ctx, xasprintf(&action_data, "%s:%d", s->name, wl->idx); wcd->command = cmd_template_replace(action, action_data, 1); - xfree(action_data); + free(action_data); wcd->idx = wl->idx; wcd->ft_template = xstrdup(template); |