diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-02 19:07:28 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-02 19:07:28 +0200 |
commit | a8d76118ca810c92a68fe5bb4648ce23636c022d (patch) | |
tree | b83505d23a7667b421be06bb23b99d8f316ebe9a /libcontacts_contact_destroy.c | |
parent | libcontacts_list_contacts: return empty list of contacts if dir is missing (diff) | |
download | libcontacts-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.c | 1 |
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); |