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

Unified Diff: dbus/property.cc

Issue 10833006: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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
Index: dbus/property.cc
diff --git a/dbus/property.cc b/dbus/property.cc
index 19683c74d5f92d6930a293c8e2c00f3871b47457..e8dfe5d26060e41d287beb85bb007231b5b3941a 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 <>
« no previous file with comments | « content/common/gpu/media/vaapi_video_decode_accelerator.cc ('k') | gpu/command_buffer/service/program_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698