aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-04-14 05:46:34 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-04-14 05:46:34 +0000
commit27ca219d2b84ce668590826d8415985bd45b8e05 (patch)
treee6e2ba2efe70129f2519689c764b98b916aad083 /file.c
parent8d116606bdae3197a1f5590ad4e8d7b07d1063f8 (diff)
two memory leaks removed
svn path=/trunk/; revision=10599
Diffstat (limited to 'file.c')
-rw-r--r--file.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/file.c b/file.c
index 0ef5ff1f2f..b7fb42af5a 100644
--- a/file.c
+++ b/file.c
@@ -1,7 +1,7 @@
/* file.c
* File I/O routines
*
- * $Id: file.c,v 1.371 2004/04/13 18:01:39 tuexen Exp $
+ * $Id: file.c,v 1.372 2004/04/14 05:46:34 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -544,6 +544,8 @@ cf_start_tail(char *fname, gboolean is_tempfile, capture_file *cf)
capture_msg = g_strdup_printf(" %s: <live capture in progress>", cf->iface);
statusbar_push_file_msg(capture_msg);
+
+ g_free(capture_msg);
}
return err;
}