aboutsummaryrefslogtreecommitdiffstats
path: root/libcontacts_organisation_destroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcontacts_organisation_destroy.c')
-rw-r--r--libcontacts_organisation_destroy.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libcontacts_organisation_destroy.c b/libcontacts_organisation_destroy.c
new file mode 100644
index 0000000..94d4a3a
--- /dev/null
+++ b/libcontacts_organisation_destroy.c
@@ -0,0 +1,11 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+
+void
+libcontacts_organisation_destroy(struct libcontacts_organisation *this)
+{
+ free(this->organisation);
+ free(this->title);
+ DESTROY_ALL(this->unrecognised_data, free);
+}