summaryrefslogtreecommitdiff
path: root/src/node_crypto.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_crypto.h')
-rw-r--r--src/node_crypto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_crypto.h b/src/node_crypto.h
index 1d823bcb35..b406fb8aa6 100644
--- a/src/node_crypto.h
+++ b/src/node_crypto.h
@@ -718,7 +718,7 @@ class ECDH : public BaseObject {
key_(key),
group_(EC_KEY_get0_group(key_)) {
MakeWeak<ECDH>(this);
- ASSERT_NE(group_, nullptr);
+ CHECK_NE(group_, nullptr);
}
static void New(const v8::FunctionCallbackInfo<v8::Value>& args);