aboutsummaryrefslogtreecommitdiffstats
path: root/src/window-xlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window-xlib.c')
-rw-r--r--src/window-xlib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/window-xlib.c b/src/window-xlib.c
index c41bedf..ecfc6cb 100644
--- a/src/window-xlib.c
+++ b/src/window-xlib.c
@@ -237,6 +237,8 @@ void runes_window_backend_create_window(RunesTerm *t, int argc, char *argv[])
XMapWindow(w->dpy, w->w);
XMapWindow(w->dpy, w->border_w);
+
+ runes_term_refcnt_inc(t);
}
void runes_window_backend_init_loop(RunesTerm *t, RunesLoop *loop)
@@ -437,7 +439,10 @@ static int runes_window_backend_process_event(void *t)
}
if (should_close) {
+ runes_window_backend_cleanup(w);
+ free(w);
runes_pty_backend_request_close(t);
+ runes_term_refcnt_dec(t);
}
return !should_close;