Fix SIGSEV on Android

This commit is contained in:
Sylvain Berfini 2011-12-26 16:54:08 +01:00
parent 24d62eeeb9
commit 5bf95231b5

View file

@ -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);
}