mirror of
https://github.com/tmate-io/tmate.git
synced 2025-02-17 10:50:51 +01:00
Sync OpenBSD patchset 769:
Skip NULL entries in the sessions list when choosing the next session, from Simon Olofsson.
This commit is contained in:
parent
45784bd5d6
commit
6c9269baa7
@ -1,4 +1,4 @@
|
||||
/* $Id: server-fn.c,v 1.111 2010-10-09 14:29:32 tcunha Exp $ */
|
||||
/* $Id: server-fn.c,v 1.112 2010-10-09 14:31:14 tcunha Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -368,7 +368,7 @@ server_next_session(struct session *s)
|
||||
s_out = NULL;
|
||||
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
||||
s_loop = ARRAY_ITEM(&sessions, i);
|
||||
if (s_loop == s)
|
||||
if (s_loop == NULL || s_loop == s)
|
||||
continue;
|
||||
if (s_out == NULL ||
|
||||
timercmp(&s_loop->activity_time, &s_out->activity_time, <))
|
||||
|
Loading…
Reference in New Issue
Block a user