From cea201df20e918db06a2e9a01b1f144372522d9f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 1 Jun 2008 20:32:41 +0000 Subject: Don't die if no dst window and -k to linkw. --- cmd-link-window.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'cmd-link-window.c') diff --git a/cmd-link-window.c b/cmd-link-window.c index 00e3b4a7..45cb4876 100644 --- a/cmd-link-window.c +++ b/cmd-link-window.c @@ -1,4 +1,4 @@ -/* $Id: cmd-link-window.c,v 1.9 2007-12-06 09:46:21 nicm Exp $ */ +/* $Id: cmd-link-window.c,v 1.10 2008-06-01 20:32:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -138,6 +138,10 @@ cmd_link_window_exec(void *ptr, struct cmd_ctx *ctx) data->dstidx = -1; if (data->flag_kill && data->dstidx != -1) { wl2 = winlink_find_by_index(&dst->windows, data->dstidx); + if (wl2 == NULL) { + ctx->error(ctx, "no window %d", data->dstidx); + return; + } /* * Can't use session_detach as it will destroy session if this -- cgit