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

Unified Diff: crypto/signature_verifier_mac.cc

Issue 7206066: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 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 | « crypto/signature_creator_mac.cc ('k') | media/audio/mac/audio_input_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/signature_verifier_mac.cc
diff --git a/crypto/signature_verifier_mac.cc b/crypto/signature_verifier_mac.cc
index d4427205c2053b579f884f5312ff206dd393f341..90e7196ee92172c19b100a096bc48e57193559d4 100644
--- a/crypto/signature_verifier_mac.cc
+++ b/crypto/signature_verifier_mac.cc
@@ -12,6 +12,7 @@
namespace crypto {
SignatureVerifier::SignatureVerifier() : sig_handle_(0) {
+ memset(&public_key_, 0, sizeof(public_key_));
EnsureCSSMInit();
}
« no previous file with comments | « crypto/signature_creator_mac.cc ('k') | media/audio/mac/audio_input_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698