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

Unified Diff: crypto/rsa_private_key_win.cc

Issue 10332002: win: Fix a few minor issues found by clang. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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: crypto/rsa_private_key_win.cc
diff --git a/crypto/rsa_private_key_win.cc b/crypto/rsa_private_key_win.cc
index d87c1ec058a79f849b22bc33482842c85d67d2ca..5a23a796c241a27b8db14eba97a836058d3edc7f 100644
--- a/crypto/rsa_private_key_win.cc
+++ b/crypto/rsa_private_key_win.cc
@@ -17,7 +17,7 @@ namespace {
#define READ_ASSERT(truth) \
if (!(truth)) { \
NOTREACHED(); \
- return false; \
+ return NULL; \
Ryan Sleevi 2012/05/02 18:11:30 Given there is only one instance of this macro, ca
Nico 2012/05/02 18:14:20 Done.
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698