Skip to content

Commit

Permalink
src: replace to CHECK_NOT_NULL in node_crypto
Browse files Browse the repository at this point in the history
  • Loading branch information
himself65 committed May 13, 2020
1 parent 5bb4d01 commit cbf7d7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/node_crypto.cc
Expand Up @@ -2923,7 +2923,7 @@ ByteSource ByteSource::NullTerminatedCopy(Environment* env,
ByteSource ByteSource::FromSymmetricKeyObject(Local<Value> handle) {
CHECK(handle->IsObject());
KeyObject* key = Unwrap<KeyObject>(handle.As<Object>());
CHECK(key);
CHECK_NOT_NULL(key);
return Foreign(key->GetSymmetricKey(), key->GetSymmetricKeySize());
}

Expand Down Expand Up @@ -3129,7 +3129,7 @@ static ManagedEVPPKey GetPublicOrPrivateKeyFromJs(
} else {
CHECK(args[*offset]->IsObject());
KeyObject* key = Unwrap<KeyObject>(args[*offset].As<Object>());
CHECK(key);
CHECK_NOT_NULL(key);
CHECK_NE(key->GetKeyType(), kKeyTypeSecret);
(*offset) += 4;
return key->GetAsymmetricKey();
Expand Down Expand Up @@ -3271,7 +3271,7 @@ MaybeLocal<Object> KeyObject::Create(Environment* env,
}

KeyObject* key = Unwrap<KeyObject>(obj);
CHECK(key);
CHECK_NOT_NULL(key);
if (key_type == kKeyTypePublic)
key->InitPublic(pkey);
else
Expand Down

0 comments on commit cbf7d7c

Please sign in to comment.