mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	if-shell doesn't need to queue its error message into a callback, and in
fact it can't do so because the item it was working with will have been freed. Reported by Daniel Hahler.
This commit is contained in:
		@@ -31,7 +31,6 @@
 | 
			
		||||
 | 
			
		||||
static enum cmd_retval	cmd_if_shell_exec(struct cmd *, struct cmdq_item *);
 | 
			
		||||
 | 
			
		||||
static enum cmd_retval	cmd_if_shell_error(struct cmdq_item *, void *);
 | 
			
		||||
static void		cmd_if_shell_callback(struct job *);
 | 
			
		||||
static void		cmd_if_shell_free(void *);
 | 
			
		||||
 | 
			
		||||
@@ -138,17 +137,6 @@ cmd_if_shell_exec(struct cmd *self, struct cmdq_item *item)
 | 
			
		||||
	return (CMD_RETURN_WAIT);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static enum cmd_retval
 | 
			
		||||
cmd_if_shell_error(struct cmdq_item *item, void *data)
 | 
			
		||||
{
 | 
			
		||||
	char	*error = data;
 | 
			
		||||
 | 
			
		||||
	cmdq_error(item, "%s", error);
 | 
			
		||||
	free(error);
 | 
			
		||||
 | 
			
		||||
	return (CMD_RETURN_NORMAL);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
cmd_if_shell_callback(struct job *job)
 | 
			
		||||
{
 | 
			
		||||
@@ -168,9 +156,9 @@ cmd_if_shell_callback(struct job *job)
 | 
			
		||||
 | 
			
		||||
	cmdlist = cmd_string_parse(cmd, file, line, &cause);
 | 
			
		||||
	if (cmdlist == NULL) {
 | 
			
		||||
		if (cause != NULL)
 | 
			
		||||
			new_item = cmdq_get_callback(cmd_if_shell_error, cause);
 | 
			
		||||
		else
 | 
			
		||||
		if (cause != NULL && cdata->item != NULL)
 | 
			
		||||
			cmdq_error(cdata->item, "%s", cause);
 | 
			
		||||
		free(cause);
 | 
			
		||||
		new_item = NULL;
 | 
			
		||||
	} else {
 | 
			
		||||
		new_item = cmdq_get_command(cmdlist, NULL, &cdata->mouse, 0);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user