-/* $OpenBSD: arguments.c,v 1.60 2023/06/30 21:55:08 nicm Exp $ */
+/* $OpenBSD: arguments.c,v 1.61 2023/11/14 15:59:49 nicm Exp $ */
/*
* Copyright (c) 2010 Nicholas Marriott <nicholas.marriott@gmail.com>
struct args_value *value;
struct args_command_state *state;
const char *cmd;
+ const char *file;
state = xcalloc(1, sizeof *state);
if (wait)
state->pi.item = item;
- cmd_get_source(self, &state->pi.file, &state->pi.line);
+ cmd_get_source(self, &file, &state->pi.line);
+ state->pi.file = xstrdup(file);
state->pi.c = tc;
if (state->pi.c != NULL)
state->pi.c->references++;
cmd_list_free(state->cmdlist);
if (state->pi.c != NULL)
server_client_unref(state->pi.c);
+ free((void *)state->pi.file);
free(state->cmd);
free(state);
}
-/* $OpenBSD: status.c,v 1.240 2023/08/15 07:01:47 nicm Exp $ */
+/* $OpenBSD: status.c,v 1.241 2023/11/14 15:59:49 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
status_message_set(struct client *c, int delay, int ignore_styles,
int ignore_keys, const char *fmt, ...)
{
- struct timeval tv;
- va_list ap;
-
- status_message_clear(c);
- status_push_screen(c);
+ struct timeval tv;
+ va_list ap;
+ char *s;
va_start(ap, fmt);
- xvasprintf(&c->message_string, fmt, ap);
+ xvasprintf(&s, fmt, ap);
va_end(ap);
- server_add_message("%s message: %s", c->name, c->message_string);
+ log_debug("%s: %s", __func__, s);
+
+ if (c == NULL) {
+ server_add_message("message: %s", s);
+ free(s);
+ return;
+ }
+
+ status_message_clear(c);
+ status_push_screen(c);
+ c->message_string = s;
+ server_add_message("%s message: %s", c->name, s);
/*
* With delay -1, the display-time option is used; zero means wait for