Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/crypto_common.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/crypto/crypto_common.cc b/src/crypto/crypto_common.cc
index 1e0fa4f0661..2739b84d6c7 100644
--- a/src/crypto/crypto_common.cc
+++ b/src/crypto/crypto_common.cc
@@ -431,11 +431,8 @@ void AddFingerprintDigest(
fingerprint[(3*i)+2] = ':';
}
- if (md_size > 0) {
- fingerprint[(3*(md_size-1))+2] = '\0';
- } else {
- fingerprint[0] = '\0';
- }
+ DCHECK_GT(md_size, 0);
+ fingerprint[(3 * (md_size - 1)) + 2] = '\0';
}
template <const char* (*nid2string)(int nid)>