diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 11:00:25 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 11:00:25 +0000 |
commit | 567f934d03176feb741219503b9fe275ca90da5f (patch) | |
tree | 762f90e5b132e2a327e6e89db661d96f5efa64f3 /net | |
parent | 08fe51bbc9517c9ad95cac13fea9453ba6b380a0 (diff) | |
download | chromium_src-567f934d03176feb741219503b9fe275ca90da5f.zip chromium_src-567f934d03176feb741219503b9fe275ca90da5f.tar.gz chromium_src-567f934d03176feb741219503b9fe275ca90da5f.tar.bz2 |
SSLConfig struct CertAndStatus is not initializing all its members.
BUG=None
TEST=None
CID=13288
Review URL: http://codereview.chromium.org/3781002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62532 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/ssl_config_service.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/base/ssl_config_service.cc b/net/base/ssl_config_service.cc index b349a76..46fce20 100644 --- a/net/base/ssl_config_service.cc +++ b/net/base/ssl_config_service.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -15,7 +15,7 @@ namespace net { -SSLConfig::CertAndStatus::CertAndStatus() {} +SSLConfig::CertAndStatus::CertAndStatus() : cert_status(0) {} SSLConfig::CertAndStatus::~CertAndStatus() {} |