Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1000)

Unified Diff: sql/connection.cc

Issue 1368493002: [sql] Fix uninit vars in Connection. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/connection.cc
diff --git a/sql/connection.cc b/sql/connection.cc
index 0b15387ea064a54d616037ff0f325e87cbbbe9d6..662127c2796d67112ef9ccfff4d42d6a188f6b03 100644
--- a/sql/connection.cc
+++ b/sql/connection.cc
@@ -282,6 +282,9 @@ Connection::Connection()
needs_rollback_(false),
in_memory_(false),
poisoned_(false),
+ mmap_disabled_(false),
+ mmap_enabled_(false),
+ total_changes_at_last_release_(0),
michaeln 2015/09/23 22:17:22 lgtm maybe use c++ 11 feature that lets you assig
stats_histogram_(NULL),
commit_time_histogram_(NULL),
autocommit_time_histogram_(NULL),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698