mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 14:27:09 +00:00
Fix negative window index range check (> not <). Reported by Juan Pablo
in GitHub issue 1283.
This commit is contained in:
@ -390,7 +390,7 @@ cmd_find_get_window_with_session(struct cmd_find_state *fs, const char *window)
|
|||||||
return (-1);
|
return (-1);
|
||||||
fs->idx = s->curw->idx + n;
|
fs->idx = s->curw->idx + n;
|
||||||
} else {
|
} else {
|
||||||
if (n < s->curw->idx)
|
if (n > s->curw->idx)
|
||||||
return (-1);
|
return (-1);
|
||||||
fs->idx = s->curw->idx - n;
|
fs->idx = s->curw->idx - n;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user