Skip to content
Snippets Groups Projects
Commit 1aa3613c authored by jhawkins@chromium.org's avatar jhawkins@chromium.org
Browse files

Coverity: Initialize statement_cache_ in the constructor.

CID=1602
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/223026

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27135 0039d316-1c4b-4281-b951-d872f2087c98
parent 9d2a78da
No related merge requests found
......@@ -11,7 +11,10 @@
namespace history {
InMemoryDatabase::InMemoryDatabase() : URLDatabase(), db_(NULL) {
InMemoryDatabase::InMemoryDatabase()
: URLDatabase(),
db_(NULL),
statement_cache_(NULL) {
}
InMemoryDatabase::~InMemoryDatabase() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment