summaryrefslogtreecommitdiffstats
path: root/chrome/common/indexed_db_key.cc
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-11 02:05:01 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-11 02:05:01 +0000
commita98411c384ac171834f4d27526a96abc1a44a8b2 (patch)
treef5f520f6764df854d0b193257585279cc2425ebf /chrome/common/indexed_db_key.cc
parent639211895adb7db5164bfab8b607a9b51ce66f1a (diff)
downloadchromium_src-a98411c384ac171834f4d27526a96abc1a44a8b2.zip
chromium_src-a98411c384ac171834f4d27526a96abc1a44a8b2.tar.gz
chromium_src-a98411c384ac171834f4d27526a96abc1a44a8b2.tar.bz2
Coverity: Initialize member variables.
CID=11644,14447,14816,15428 BUG=none TEST=none Review URL: http://codereview.chromium.org/6670016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77763 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/indexed_db_key.cc')
-rw-r--r--chrome/common/indexed_db_key.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/common/indexed_db_key.cc b/chrome/common/indexed_db_key.cc
index 050b941..ad02858 100644
--- a/chrome/common/indexed_db_key.cc
+++ b/chrome/common/indexed_db_key.cc
@@ -11,6 +11,7 @@ using WebKit::WebIDBKey;
IndexedDBKey::IndexedDBKey()
: type_(WebIDBKey::InvalidType),
+ date_(0),
number_(0) {
}