Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
321c1d7f
Commit
321c1d7f
authored
Jan 06, 2016
by
Simon Morlat
Browse files
fix make dist and null pointer when rtt is disabled
parent
590f80a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
coreapi/Makefile.am
coreapi/Makefile.am
+1
-1
coreapi/linphonecall.c
coreapi/linphonecall.c
+1
-1
No files found.
coreapi/Makefile.am
View file @
321c1d7f
...
...
@@ -90,7 +90,7 @@ liblinphone_la_SOURCES=\
xml.c
\
xmlrpc.c
\
vtables.c
\
ringtoneplayer.c
\
ringtoneplayer.c
ringtoneplayer.h
\
$(GITVERSION_FILE)
if
BUILD_UPNP
...
...
coreapi/linphonecall.c
View file @
321c1d7f
...
...
@@ -2483,7 +2483,7 @@ void linphone_call_init_text_stream(LinphoneCall *call){
LinphoneCore
*
lc
=
call
->
core
;
char
*
cname
;
if
(
call
->
textstream
!=
NULL
||
!
call
->
params
->
realtimetext_enabled
)
return
;
if
(
call
->
textstream
!=
NULL
)
return
;
if
(
call
->
sessions
[
call
->
main_text_stream_index
].
rtp_session
==
NULL
)
{
SalMulticastRole
multicast_role
=
linphone_call_get_multicast_role
(
call
,
SalText
);
SalMediaDescription
*
remotedesc
=
NULL
;
...
...
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