mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-24 14:48:07 +00:00
fix crash when not building with vcard
This commit is contained in:
parent
008892b9b4
commit
a3e599b438
1 changed files with 1 additions and 1 deletions
|
|
@ -333,7 +333,7 @@ bctbx_list_t* linphone_friend_get_addresses(const LinphoneFriend *lf) {
|
|||
return result;
|
||||
} else {
|
||||
bctbx_list_t *addresses = NULL;
|
||||
return lf->uri ? bctbx_list_append(addresses, lf->uri) : NULL;
|
||||
return lf->uri ? bctbx_list_append(addresses, linphone_address_clone(lf->uri)) : NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue