Fix build break in google3 import caused by https://codereview.webrtc.org/1532543003

TBR=pthatcher@webrtc.org
BUG=

Review URL: https://codereview.webrtc.org/1537683003

Cr-Commit-Position: refs/heads/master@{#11076}
This commit is contained in:
guoweis 2015-12-17 18:02:26 -08:00 committed by Commit bot
parent 4638331fd8
commit 77fa59d789

View File

@ -450,10 +450,10 @@ bool SrtpFilter::ApplyParams(const CryptoParams& send_params,
bool SrtpFilter::ResetParams() {
offer_params_.clear();
state_ = ST_INIT;
(void)send_session_.release();
(void)recv_session_.release();
(void)send_rtcp_session_.release();
(void)recv_rtcp_session_.release();
send_session_ = nullptr;
recv_session_ = nullptr;
send_rtcp_session_ = nullptr;
recv_rtcp_session_ = nullptr;
LOG(LS_INFO) << "SRTP reset to init state";
return true;
}