Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
6a541f48
Commit
6a541f48
authored
13 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
* #7245: fixed crasher in destructor of audio_zrtp_session
parent
3163a376
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
daemon/src/audio/audiortp/audio_symmetric_rtp_session.h
+1
-5
1 addition, 5 deletions
daemon/src/audio/audiortp/audio_symmetric_rtp_session.h
daemon/src/audio/audiortp/audio_zrtp_session.cpp
+7
-1
7 additions, 1 deletion
daemon/src/audio/audiortp/audio_zrtp_session.cpp
with
8 additions
and
6 deletions
daemon/src/audio/audiortp/audio_symmetric_rtp_session.h
+
1
−
5
View file @
6a541f48
...
@@ -87,12 +87,8 @@ class AudioSymmetricRtpSession : public ost::TimerPort, public ost::SymmetricRTP
...
@@ -87,12 +87,8 @@ class AudioSymmetricRtpSession : public ost::TimerPort, public ost::SymmetricRTP
};
};
SpeexEchoCancel
echoCanceller
;
SpeexEchoCancel
echoCanceller
;
protected
:
private
:
AudioRtpThread
*
rtpThread_
;
AudioRtpThread
*
rtpThread_
;
public
:
friend
class
AudioRtpThread
;
};
};
}
}
...
...
This diff is collapsed.
Click to expand it.
daemon/src/audio/audiortp/audio_zrtp_session.cpp
+
7
−
1
View file @
6a541f48
...
@@ -68,11 +68,17 @@ AudioZrtpSession::AudioZrtpSession(SIPCall * sipcall, const std::string& zidFile
...
@@ -68,11 +68,17 @@ AudioZrtpSession::AudioZrtpSession(SIPCall * sipcall, const std::string& zidFile
AudioZrtpSession
::~
AudioZrtpSession
()
AudioZrtpSession
::~
AudioZrtpSession
()
{
{
// tmatth:Oct 20 2011:FIXME:
// This was crashing...seems like it's not necessary. Double check
// with valgrind/helgrind
#if 0
try {
try {
terminate
();
ost::Thread::
terminate();
} catch (...) {
} catch (...) {
throw;
throw;
}
}
#endif
Manager
::
instance
().
getMainBuffer
()
->
unBindAll
(
ca_
->
getCallId
());
Manager
::
instance
().
getMainBuffer
()
->
unBindAll
(
ca_
->
getCallId
());
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment