summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorkmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-11 17:25:19 +0000
committerkmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-11 17:25:19 +0000
commit5647de7ad777e554e10be57682a71921decc6384 (patch)
treefc4f200569b9ff540e8500fe399320ed9f1282de /chrome
parentc773e3eb0e20b403b53d0e5bd9a43369190af0ae (diff)
downloadchromium_src-5647de7ad777e554e10be57682a71921decc6384.zip
chromium_src-5647de7ad777e554e10be57682a71921decc6384.tar.gz
chromium_src-5647de7ad777e554e10be57682a71921decc6384.tar.bz2
Coverity: Fix uninitialized constructor variable.
CID=15429 BUG=none TEST=none Review URL: http://codereview.chromium.org/6673010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77824 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/profiles/profile_io_data.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
index ddf493a..b784c40 100644
--- a/chrome/browser/profiles/profile_io_data.cc
+++ b/chrome/browser/profiles/profile_io_data.cc
@@ -182,7 +182,8 @@ ProfileIOData::RequestContext::~RequestContext() {}
ProfileIOData::ProfileParams::ProfileParams()
: is_off_the_record(false),
- clear_local_state_on_exit(false) {}
+ clear_local_state_on_exit(false),
+ profile_id(Profile::kInvalidProfileId) {}
ProfileIOData::ProfileParams::~ProfileParams() {}
ProfileIOData::ProfileIOData(bool is_off_the_record)