diff options
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 <nicm@users.sourceforge.net> @@ -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); |