From 3962c5f706adb92c3ca83aa1a8672920fe2aabf6 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 30 Nov 2007 11:08:35 +0000 Subject: Change window name on \ek...\e\. --- screen.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'screen.c') diff --git a/screen.c b/screen.c index 51da4e65..07d007b2 100644 --- a/screen.c +++ b/screen.c @@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.53 2007-11-28 08:20:41 nicm Exp $ */ +/* $Id: screen.c,v 1.54 2007-11-30 11:08:35 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -97,7 +97,7 @@ screen_create(struct screen *s, u_int dx, u_int dy) s->colr = SCREEN_DEFCOLR; s->mode = MODE_CURSOR; - *s->title = '\0'; + s->title = xstrdup(""); s->grid_data = xmalloc(dy * (sizeof *s->grid_data)); s->grid_attr = xmalloc(dy * (sizeof *s->grid_attr)); @@ -260,6 +260,7 @@ screen_set_cell(struct screen *s, void screen_destroy(struct screen *s) { + xfree(s->title); screen_free_lines(s, 0, s->dy + s->hsize); xfree(s->grid_data); xfree(s->grid_attr); -- cgit