mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-01 02:39:22 +00:00
Save a copy of the list of participants in linphone_conference_get_participants()
This commit is contained in:
parent
b118f3584a
commit
f838206f69
1 changed files with 1 additions and 1 deletions
|
|
@ -845,7 +845,7 @@ int linphone_conference_get_participant_count(const LinphoneConference *obj) {
|
|||
}
|
||||
|
||||
MSList *linphone_conference_get_participants(const LinphoneConference *obj) {
|
||||
const list<Participant> participants = ((Conference *)obj)->getParticipants();
|
||||
const list<Participant> &participants = ((Conference *)obj)->getParticipants();
|
||||
MSList *participants_list = NULL;
|
||||
for(list<Participant>::const_iterator it=participants.begin();it!=participants.end();it++) {
|
||||
LinphoneAddress *uri = linphone_address_clone(it->getUri());
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue