summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/syncable
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-24 09:20:12 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-24 09:20:12 +0000
commiteb8266fa40f1764a43a4fe7ecd9edcb321f76c56 (patch)
treea0ebfb4ad00c5eab383c281fdd6c38dfb2986390 /chrome/browser/sync/syncable
parentb842216dfc2e08e628e8ba0796d3d4afce9cc00f (diff)
downloadchromium_src-eb8266fa40f1764a43a4fe7ecd9edcb321f76c56.zip
chromium_src-eb8266fa40f1764a43a4fe7ecd9edcb321f76c56.tar.gz
chromium_src-eb8266fa40f1764a43a4fe7ecd9edcb321f76c56.tar.bz2
Coverity issues 7028, 8452, 7061, 7070: Uninitialized members in browser/sync/*
BUG=None (Coverity issue id listed above) TEST=None Review URL: http://codereview.chromium.org/2884036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53581 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/syncable')
-rw-r--r--chrome/browser/sync/syncable/syncable.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/sync/syncable/syncable.h b/chrome/browser/sync/syncable/syncable.h
index 291e798..15b08c3 100644
--- a/chrome/browser/sync/syncable/syncable.h
+++ b/chrome/browser/sync/syncable/syncable.h
@@ -425,7 +425,9 @@ class Entry {
friend class sync_api::ReadNode;
void* operator new(size_t size) { return (::operator new)(size); }
- inline Entry(BaseTransaction* trans) : basetrans_(trans) { }
+ inline Entry(BaseTransaction* trans)
+ : basetrans_(trans),
+ kernel_(NULL) { }
protected: