Skip to content
Snippets Groups Projects
Commit 73887dcb authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #8968: Member variables must be initialized in AudioSrtpSession constructor

parent 60351c58
No related branches found
No related tags found
No related merge requests found
......@@ -50,9 +50,13 @@ AudioSrtpSession::AudioSrtpSession(SIPCall * sipcall) :
localCryptoCtx_(NULL),
localCryptoSuite_(0),
remoteCryptoSuite_(0),
localMasterKey_(),
localMasterKeyLength_(0),
localMasterSalt_(),
localMasterSaltLength_(0),
remoteMasterKey_(),
remoteMasterKeyLength_(0),
remoteMasterSalt_(),
remoteMasterSaltLength_(0),
remoteOfferIsSet_(false)
{
......
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