aboutsummaryrefslogtreecommitdiffstats
path: root/libcontacts_number_destroy.c
blob: 64b84cdac299ea62cfe3c74ab997c1ce1711d7b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* See LICENSE file for copyright and license details. */
#include "common.h"


void
libcontacts_number_destroy(struct libcontacts_number *this)
{
	free(this->context);
	free(this->number);
	DESTROY_ALL(this->unrecognised_data, free);
}