summaryrefslogtreecommitdiffstats
path: root/dbus
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-25 22:08:27 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-25 22:08:27 +0000
commitf1a9c52b716ed3f5af6cff790988546c114efc86 (patch)
treeab5188c4f69bf0b734ed7f21b9e5bc86dc1d3f85 /dbus
parent1629eeeaa536ec7421deec5d6de78b6a871ad713 (diff)
downloadchromium_src-f1a9c52b716ed3f5af6cff790988546c114efc86.zip
chromium_src-f1a9c52b716ed3f5af6cff790988546c114efc86.tar.gz
chromium_src-f1a9c52b716ed3f5af6cff790988546c114efc86.tar.bz2
Coverity: Initialize member variables.
CID_COUNT=12 CID=104349,104361,104373,104374,104399,104420,104421,104422,104466,104476, 104532,104538 BUG=none TEST=none R=groby TBR=brettw,satorux,mnissler Review URL: https://chromiumcodereview.appspot.com/10833006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148430 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus')
-rw-r--r--dbus/property.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/property.cc b/dbus/property.cc
index 19683c7..e8dfe5d 100644
--- a/dbus/property.cc
+++ b/dbus/property.cc
@@ -323,7 +323,7 @@ void Property<uint32>::AppendSetValueToWriter(MessageWriter* writer) {
//
template <>
-Property<int64>::Property() : value_(0) {
+Property<int64>::Property() : value_(0), set_value_(0) {
}
template <>