If there is no current vtable, return the first one if exists

This commit is contained in:
Sylvain Berfini 2015-12-04 17:02:29 +01:00
parent 48510f3000
commit 9d71678c28

View file

@ -38,6 +38,9 @@ void linphone_core_v_table_destroy(LinphoneCoreVTable* table) {
}
LinphoneCoreVTable *linphone_core_get_current_vtable(LinphoneCore *lc) {
if (lc->current_vtable == NULL && ms_list_size(lc->vtable_refs) > 0) {
return (LinphoneCoreVTable *)ms_list_nth_data(lc->vtable_refs, 0);
}
return lc->current_vtable;
}