diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-30 21:14:04 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-30 21:14:04 +0000 |
commit | 09c64328549676f22a5a541e27a5ad89200e94ad (patch) | |
tree | e04a8d4eb79f630d02f88765f5c21a1f29a56189 /screen-write.c | |
parent | 796bfbd7afa40ef5bbc486c6a4bdb857e8204a29 (diff) | |
download | rtmux-09c64328549676f22a5a541e27a5ad89200e94ad.tar.gz rtmux-09c64328549676f22a5a541e27a5ad89200e94ad.tar.bz2 rtmux-09c64328549676f22a5a541e27a5ad89200e94ad.zip |
Sync OpenBSD patchset 207:
Plug some memory leaks.
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/screen-write.c b/screen-write.c index 94b5d61f..8754610d 100644 --- a/screen-write.c +++ b/screen-write.c @@ -1,4 +1,4 @@ -/* $Id: screen-write.c,v 1.65 2009-07-28 22:41:38 tcunha Exp $ */ +/* $Id: screen-write.c,v 1.66 2009-07-30 21:14:04 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -91,6 +91,7 @@ screen_write_strlen(int utf8flag, const char *fmt, ...) } } + xfree(msg); return (size); } |