From 7f972efe0d2889052fbb49dceb28af5c9e1308a6 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 18 Jun 2004 20:07:09 +0000 Subject: Call camel_mime_utils_shutdown() and camel_operation_shutdown(). 2004-06-18 Jeffrey Stedfast * camel.c (camel_shutdown): Call camel_mime_utils_shutdown() and camel_operation_shutdown(). * camel-operation.c (camel_operation_shutdown): New function. * camel-mime-utils.c (camel_mime_utils_shutdown): New function to clean up the compiled regexes. svn path=/trunk/; revision=26425 --- camel/camel.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'camel/camel.c') diff --git a/camel/camel.c b/camel/camel.c index 09ba07caf4..f370d891d0 100644 --- a/camel/camel.c +++ b/camel/camel.c @@ -46,6 +46,7 @@ static int initialised = FALSE; static void camel_shutdown (void) { + void camel_operation_shutdown (void); CamelCertDB *certdb; if (!initialised) @@ -63,6 +64,9 @@ camel_shutdown (void) camel_object_unref (certdb); } + camel_operation_shutdown (); + camel_mime_utils_shutdown (); + initialised = FALSE; } -- cgit v1.2.3