mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 18:29:29 +00:00
Fix SIGSEV on Android
This commit is contained in:
parent
24d62eeeb9
commit
5bf95231b5
1 changed files with 3 additions and 0 deletions
|
|
@ -298,5 +298,8 @@ int linphone_core_terminate_conference(LinphoneCore *lc) {
|
|||
}
|
||||
|
||||
int linphone_core_get_conference_size(LinphoneCore *lc) {
|
||||
if (lc->conf_ctx.conf == NULL) {
|
||||
return 0;
|
||||
}
|
||||
return ms_audio_conference_get_size(lc->conf_ctx.conf);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue