Fixing an uninitialized variable in webrtcsession_unittest.

Introduced in https://codereview.webrtc.org/1590333004/

TBR=pthatcher@webrtc.org
NOTRY=true

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

Cr-Commit-Position: refs/heads/master@{#11345}
This commit is contained in:
deadbeef 2016-01-21 10:26:38 -08:00 committed by Commit bot
parent fa156696dd
commit 8947a01e05

View File

@ -1477,7 +1477,7 @@ class WebRtcSessionTest
// Last values received from data channel creation signal.
std::string last_data_channel_label_;
InternalDataChannelInit last_data_channel_config_;
bool session_destroyed_;
bool session_destroyed_ = false;
};
TEST_P(WebRtcSessionTest, TestInitializeWithDtls) {