Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! crypto: add KeyObject.prototype.equals method
Co-authored-by: Ben Noordhuis <[email protected]>
  • Loading branch information
panva and bnoordhuis authored Feb 25, 2022
commit 5137cc0677d52f55184ee0853cfcaaafcf117950
2 changes: 1 addition & 1 deletion src/crypto/crypto_keys.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ void KeyObjectHandle::Equals(const FunctionCallbackInfo<Value>& args) {
break;
}
default:
CHECK(false);
UNREACHABLE("unsupported key type");
}

args.GetReturnValue().Set(ret);
Expand Down