summaryrefslogtreecommitdiffstats
path: root/net/proxy/dhcp_proxy_script_fetcher_win.cc
diff options
context:
space:
mode:
authorgroby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-28 03:23:11 +0000
committergroby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-28 03:23:11 +0000
commit7ec8793a219f2479b11ab1f8c4c87a1df11d70e4 (patch)
tree6ab6cec1f875ebf8e65ab1bcd40f7eaea0d65a1c /net/proxy/dhcp_proxy_script_fetcher_win.cc
parentf83c6f7f3c90cd3bebaa961737ba80db27240c1f (diff)
downloadchromium_src-7ec8793a219f2479b11ab1f8c4c87a1df11d70e4.zip
chromium_src-7ec8793a219f2479b11ab1f8c4c87a1df11d70e4.tar.gz
chromium_src-7ec8793a219f2479b11ab1f8c4c87a1df11d70e4.tar.bz2
[Coverity] Fixed uninitialized member
CID=102816 BUG= TEST= Review URL: http://codereview.chromium.org/9298034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119584 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/dhcp_proxy_script_fetcher_win.cc')
-rw-r--r--net/proxy/dhcp_proxy_script_fetcher_win.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/proxy/dhcp_proxy_script_fetcher_win.cc b/net/proxy/dhcp_proxy_script_fetcher_win.cc
index cec2b1c..ab24aa3 100644
--- a/net/proxy/dhcp_proxy_script_fetcher_win.cc
+++ b/net/proxy/dhcp_proxy_script_fetcher_win.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -39,6 +39,7 @@ DhcpProxyScriptFetcherWin::DhcpProxyScriptFetcherWin(
URLRequestContext* url_request_context)
: state_(STATE_START),
num_pending_fetchers_(0),
+ destination_string_(NULL),
url_request_context_(url_request_context) {
DCHECK(url_request_context_);
}