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

Unified Diff: crypto/signature_creator_win.cc

Issue 9005015: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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: crypto/signature_creator_win.cc
diff --git a/crypto/signature_creator_win.cc b/crypto/signature_creator_win.cc
index 244b06ad953b4463d02f3373d9c1192223d30cf4..94fe87d5f53cd0b1b7cc7e4bafd5ac0202d76a36 100644
--- a/crypto/signature_creator_win.cc
+++ b/crypto/signature_creator_win.cc
@@ -23,7 +23,7 @@ SignatureCreator* SignatureCreator::Create(RSAPrivateKey* key) {
return result.release();
}
-SignatureCreator::SignatureCreator() : hash_object_(0) {}
+SignatureCreator::SignatureCreator() : key_(NULL), hash_object_(0) {}
SignatureCreator::~SignatureCreator() {}

Powered by Google App Engine
This is Rietveld 408576698