Reset s->window to NULL so it doesn't end up in s->last.

pull/1/head
Nicholas Marriott 2007-09-21 20:00:28 +00:00
parent 1fefbb7a85
commit f456e1cb30
1 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $Id: session.c,v 1.12 2007-09-21 18:35:16 nicm Exp $ */
/* $Id: session.c,v 1.13 2007-09-21 20:00:28 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -137,8 +137,11 @@ session_detach(struct session *s, struct window *w)
if (s->last == w)
s->last = NULL;
if (s->window == w && session_last(s) != 0 && session_previous(s) != 0)
session_next(s);
if (s->window == w) {
s->window = NULL;
if (session_last(s) != 0 && session_previous(s) != 0)
session_next(s);
}
return (0);
}