mirror of
https://github.com/tmux/tmux.git
synced 2024-11-19 19:08:50 +00:00
Do not try to parse command when unsetting, GitHub issue 1788.
This commit is contained in:
parent
e37f34facc
commit
43796bf131
@ -361,7 +361,7 @@ options_array_set(struct options_entry *o, u_int idx, const char *value,
|
|||||||
return (-1);
|
return (-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OPTIONS_IS_COMMAND(o)) {
|
if (OPTIONS_IS_COMMAND(o) && value != NULL) {
|
||||||
pr = cmd_parse_from_string(value, NULL);
|
pr = cmd_parse_from_string(value, NULL);
|
||||||
switch (pr->status) {
|
switch (pr->status) {
|
||||||
case CMD_PARSE_EMPTY:
|
case CMD_PARSE_EMPTY:
|
||||||
|
Loading…
Reference in New Issue
Block a user