Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
liblinphone
Commits
2f39f845
Commit
2f39f845
authored
Feb 13, 2018
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix crash in linphone_core_report_call_log().
parent
66a6499f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
coreapi/misc.c
coreapi/misc.c
+1
-1
No files found.
coreapi/misc.c
View file @
2f39f845
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment