aboutsummaryrefslogtreecommitdiffstats
path: root/filters.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-03-13 21:25:48 +0000
committerGuy Harris <guy@alum.mit.edu>2001-03-13 21:25:48 +0000
commitd820905672fc2bbac7c609c1628e22dcbb3e2827 (patch)
treea27795c2319b0930eecf7387f1d57791d8b9155a /filters.c
parent088446bd37a08b88753f833df4dda09a5f3ce35f (diff)
It's generally considered Bad Form to free something up if you've handed
it to somebody else to use; don't do that. svn path=/trunk/; revision=3127
Diffstat (limited to 'filters.c')
-rw-r--r--filters.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/filters.c b/filters.c
index 398e29a038..eea093dbbe 100644
--- a/filters.c
+++ b/filters.c
@@ -1,7 +1,7 @@
/* filters.c
* Code for reading and writing the filters file.
*
- * $Id: filters.c,v 1.6 2001/02/03 06:10:11 guy Exp $
+ * $Id: filters.c,v 1.7 2001/03/13 21:25:48 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -515,7 +515,6 @@ save_filter_list(filter_list_type_t list, char **pref_path_return,
*pref_path_return = ff_path;
*errno_return = errno;
unlink(ff_path_new);
- g_free(ff_path);
g_free(ff_path_new);
return;
}