Free the exception and the priv struct.

2000-06-02  Christopher James Lahey  <clahey@helixcode.com>

	* filter-driver.c: Free the exception and the priv struct.

svn path=/trunk/; revision=3387
This commit is contained in:
Christopher James Lahey
2000-06-02 08:16:25 +00:00
committed by Chris Lahey
parent 85e4486c1c
commit ac5683a1da
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-06-02 Christopher James Lahey <clahey@helixcode.com>
* filter-driver.c: Free the exception and the priv struct.
2000-06-01 Christopher James Lahey <clahey@helixcode.com>
* filter-arg-types.c (arg_address_edit_value): Search for ad in

View File

@ -163,6 +163,10 @@ filter_driver_finalise (GtkObject *obj)
gtk_object_unref((GtkObject *)p->eval);
camel_exception_free(p->ex);
g_free(p);
((GtkObjectClass *)(filter_driver_parent))->finalize((GtkObject *)obj);
}