mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-27 07:59:20 +00:00
Fix bb10 crash in log with NULL for %s
This commit is contained in:
parent
5e24a5729b
commit
572c57a221
1 changed files with 2 additions and 2 deletions
|
|
@ -498,13 +498,13 @@ void linphone_reporting_update_media_info(LinphoneCall * call, int stats_type) {
|
|||
STR_REASSIGN(report->info.local_addr.group, ms_strdup_printf("%s-%s-%s"
|
||||
, dialog_id
|
||||
, "local"
|
||||
, report->local_metrics.user_agent
|
||||
, report->local_metrics.user_agent ? report->local_metrics.user_agent : ""
|
||||
)
|
||||
);
|
||||
STR_REASSIGN(report->info.remote_addr.group, ms_strdup_printf("%s-%s-%s"
|
||||
, dialog_id
|
||||
, "remote"
|
||||
, report->remote_metrics.user_agent
|
||||
, report->remote_metrics.user_agent ? report->remote_metrics.user_agent : ""
|
||||
)
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue