mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
xfree is not particularly helpful, remove it. From Thomas Adam.
This commit is contained in:
@ -20,6 +20,7 @@
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <event.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "tmux.h"
|
||||
@ -110,12 +111,12 @@ control_callback(struct client *c, int closed, unused void *data)
|
||||
if (cmd_string_parse(line, &cmdlist, &cause) != 0) {
|
||||
control_write(c, "%%error in line \"%s\": %s", line,
|
||||
cause);
|
||||
xfree(cause);
|
||||
free(cause);
|
||||
} else {
|
||||
cmd_list_exec(cmdlist, &ctx);
|
||||
cmd_list_free(cmdlist);
|
||||
}
|
||||
|
||||
xfree(line);
|
||||
free(line);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user