tool_metalink: introduce metalink_cleanup() in the internal API
authorKamil Dudka <kdudka@redhat.com>
Wed, 31 Oct 2012 09:43:36 +0000 (10:43 +0100)
committerKamil Dudka <kdudka@redhat.com>
Fri, 9 Nov 2012 09:27:10 +0000 (10:27 +0100)
... to release resources allocated at global scope

src/tool_metalink.c
src/tool_metalink.h
src/tool_operhlp.c

index 16689a3..a3d2c50 100644 (file)
@@ -773,4 +773,8 @@ void clean_metalink(struct Configurable *config)
   config->metalinkfile_last = 0;
 }
 
+void metalink_cleanup(void)
+{
+}
+
 #endif /* USE_METALINK */
index 49a6e64..c35f4a2 100644 (file)
@@ -144,6 +144,11 @@ int metalink_check_hash(struct Configurable *config,
                         metalinkfile *mlfile,
                         const char *filename);
 
+/*
+ * Release resources allocated at global scope.
+ */
+void metalink_cleanup(void);
+
 #else /* USE_METALINK */
 
 #define count_next_metalink_resource(x)  0
index e45f102..9078b95 100644 (file)
 #include "tool_operhlp.h"
 #include "tool_version.h"
 
+#ifdef USE_METALINK
+/* import the declaration of metalink_cleanup() */
+#  include "tool_metalink.h"
+#endif
+
 #include "memdebug.h" /* keep this as LAST include */
 
 /*
@@ -215,6 +220,9 @@ void main_free(void)
 {
   curl_global_cleanup();
   convert_cleanup();
+#ifdef USE_METALINK
+  metalink_cleanup();
+#endif
 }
 
 #ifdef CURLDEBUG