Skip to content
Snippets Groups Projects
Commit 6943e0c7 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#4243] Fix segfault in AudioSrtpSession

parent 0992f941
No related branches found
No related tags found
No related merge requests found
......@@ -66,15 +66,6 @@ AudioSrtpSession::AudioSrtpSession (ManagerImpl * manager, SIPCall * sipcall) :
AudioSrtpSession::~AudioSrtpSession()
{
if (_remoteCryptoCtx) {
delete _remoteCryptoCtx;
_remoteCryptoCtx = NULL;
}
if (_localCryptoCtx) {
delete _localCryptoCtx;
_localCryptoCtx = NULL;
}
}
void AudioSrtpSession::initLocalCryptoInfo()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment