summaryrefslogtreecommitdiffstats
path: root/cmd-find.c
diff options
context:
space:
mode:
authornicm <nicm>2018-01-15 15:30:03 +0000
committernicm <nicm>2018-01-15 15:30:03 +0000
commit53b25635da9656577e28a45f328798c417b50cb4 (patch)
tree6170ee694aee5c5e9a62cd8988376aacb8d8c5a2 /cmd-find.c
parent481703d6698467e459d5b3ff3cd4322bd0385798 (diff)
Another redundant check, GitHub issue 1219.
Diffstat (limited to 'cmd-find.c')
-rw-r--r--cmd-find.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/cmd-find.c b/cmd-find.c
index 3c583d79..7c52c71c 100644
--- a/cmd-find.c
+++ b/cmd-find.c
@@ -911,16 +911,12 @@ cmd_find_from_client(struct cmd_find_state *fs, struct client *c, int flags)
*/
fs->w = wp->window;
if (cmd_find_best_session_with_window(fs) != 0) {
- if (wp != NULL) {
- /*
- * The window may have been destroyed but the pane
- * still on all_window_panes due to something else
- * holding a reference.
- */
- goto unknown_pane;
- }
- cmd_find_clear_state(fs, 0);
- return (-1);
+ /*
+ * The window may have been destroyed but the pane
+ * still on all_window_panes due to something else
+ * holding a reference.
+ */
+ goto unknown_pane;
}
fs->wl = fs->s->curw;
fs->w = fs->wl->window;