mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 08:39:20 +00:00
Fix crash in linphone_core_report_call_log().
This commit is contained in:
parent
66a6499f56
commit
2f39f845d5
1 changed files with 1 additions and 1 deletions
|
|
@ -917,7 +917,7 @@ void linphone_core_report_call_log(LinphoneCore *lc, LinphoneCallLog *call_log){
|
|||
linphone_address_unref(conference_factory_addr);
|
||||
}
|
||||
const char *username = linphone_address_get_username(call_log->to);
|
||||
if (strstr(username, "chatroom-") == username)
|
||||
if (username && (strstr(username, "chatroom-") == username))
|
||||
return;
|
||||
// End of workaround
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue