diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-21 18:11:25 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-21 18:11:25 +0000 |
commit | 1702a781bb4e31e44c9eb21503c5812d5a058d06 (patch) | |
tree | 0a109a0d4a9cfb33f6dea7535a2c8eb599cdec9e | |
parent | 24b978adb770b4b0b6f85b8bac963d5255d55c03 (diff) | |
download | rtmux-1702a781bb4e31e44c9eb21503c5812d5a058d06.tar.gz rtmux-1702a781bb4e31e44c9eb21503c5812d5a058d06.tar.bz2 rtmux-1702a781bb4e31e44c9eb21503c5812d5a058d06.zip |
Be more careful about destroying windows.
-rw-r--r-- | window.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.7 2007-09-20 09:43:33 nicm Exp $ */ +/* $Id: window.c,v 1.8 2007-09-21 18:11:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -143,7 +143,7 @@ window_create(const char *cmd, u_int sx, u_int sy) xfree(name); window_add(&windows, w); - w->references = 0; + w->references = 1; return (w); } @@ -187,10 +187,10 @@ window_remove(struct windows *ww, struct window *w) ARRAY_TRUNC(ww, 1); w->references--; - if (w->references == 0) { + if (w->references == 1) window_remove(&windows, w); + if (w->references == 0) window_destroy(w); - } } /* Destroy a window. */ |