From f35f54bf681f4012cb9a386bff4aaf911aef0694 Mon Sep 17 00:00:00 2001 From: "xians@webrtc.org" Date: Thu, 29 Mar 2012 13:59:24 +0000 Subject: [PATCH] Fix coverity warning. Review URL: https://webrtc-codereview.appspot.com/465002 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1955 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/voice_engine/main/test/auto_test/voe_unit_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/voice_engine/main/test/auto_test/voe_unit_test.cc b/src/voice_engine/main/test/auto_test/voe_unit_test.cc index 1aa9e10dab..2c1e5c541f 100644 --- a/src/voice_engine/main/test/auto_test/voe_unit_test.cc +++ b/src/voice_engine/main/test/auto_test/voe_unit_test.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. + * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source @@ -187,7 +187,7 @@ MyMedia mpobj; // ---------------------------------------------------------------------------- VoEUnitTest::VoEUnitTest(VoETestManager& mgr) : - _mgr(mgr), _extOnOff(false), _extBitsPerSample(-1) { + _mgr(mgr), _extOnOff(false), _extBitsPerSample(-1), _extChannel(0) { for (int i = 0; i < 32; i++) { _listening[i] = false; _playing[i] = false;