From b03783efad9e488935bb81e57aca3b3c76bc498a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 16 Feb 2009 19:01:16 +0000 Subject: strdup() not necessary here. --- tty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tty.c') diff --git a/tty.c b/tty.c index 3c3d3565..d5ebdc20 100644 --- a/tty.c +++ b/tty.c @@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.77 2009-02-13 19:45:16 nicm Exp $ */ +/* $Id: tty.c,v 1.78 2009-02-16 19:01:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -245,7 +245,7 @@ tty_close(struct tty *tty, int no_stop) if (!no_stop) tty_stop_tty(tty); - + tty_term_free(tty->term); tty_keys_free(tty); -- cgit