diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-02 22:47:53 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-02 22:47:53 +0200 |
commit | d161aa539a449cc6fa66fb73ad54f997bcd49b13 (patch) | |
tree | e59a18a53191c148fc372a7cbbc82cd000bbfadc /libcontacts_organisation_destroy.c | |
parent | Add full name, use separate fields for birthday componets and add when leapies celebrate on common years (diff) | |
download | libcontacts-d161aa539a449cc6fa66fb73ad54f997bcd49b13.tar.gz libcontacts-d161aa539a449cc6fa66fb73ad54f997bcd49b13.tar.bz2 libcontacts-d161aa539a449cc6fa66fb73ad54f997bcd49b13.tar.xz |
Fix parsing and memory leaks
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libcontacts_organisation_destroy.c')
-rw-r--r-- | libcontacts_organisation_destroy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcontacts_organisation_destroy.c b/libcontacts_organisation_destroy.c index 94d4a3a..a65a774 100644 --- a/libcontacts_organisation_destroy.c +++ b/libcontacts_organisation_destroy.c @@ -7,5 +7,5 @@ libcontacts_organisation_destroy(struct libcontacts_organisation *this) { free(this->organisation); free(this->title); - DESTROY_ALL(this->unrecognised_data, free); + DESTROY_ALL_STRINGS(this->unrecognised_data); } |