aboutsummaryrefslogtreecommitdiffstats
path: root/libcontacts_contact_destroy.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-04-02 19:07:28 +0200
committerMattias Andrée <maandree@kth.se>2021-04-02 19:07:28 +0200
commita8d76118ca810c92a68fe5bb4648ce23636c022d (patch)
treeb83505d23a7667b421be06bb23b99d8f316ebe9a /libcontacts_contact_destroy.c
parentlibcontacts_list_contacts: return empty list of contacts if dir is missing (diff)
downloadlibcontacts-a8d76118ca810c92a68fe5bb4648ce23636c022d.tar.gz
libcontacts-a8d76118ca810c92a68fe5bb4648ce23636c022d.tar.bz2
libcontacts-a8d76118ca810c92a68fe5bb4648ce23636c022d.tar.xz
Add full name, use separate fields for birthday componets and add when leapies celebrate on common years
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libcontacts_contact_destroy.c')
-rw-r--r--libcontacts_contact_destroy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libcontacts_contact_destroy.c b/libcontacts_contact_destroy.c
index 974473d..70d1335 100644
--- a/libcontacts_contact_destroy.c
+++ b/libcontacts_contact_destroy.c
@@ -9,6 +9,7 @@ libcontacts_contact_destroy(struct libcontacts_contact *this)
free(this->name);
free(this->first_name);
free(this->last_name);
+ free(this->full_name);
free(this->nickname);
DESTROY_ALL(this->photos, free);
DESTROY_ALL(this->groups, free);