We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e55b02b commit ab67bb9Copy full SHA for ab67bb9
src/crypto/crypto_ec.cc
@@ -937,6 +937,7 @@ size_t GroupOrderSize(const EVPKeyPointer& key) {
937
const EC_KEY* ec = key;
938
CHECK_NOT_NULL(ec);
939
auto order = BignumPointer::New();
940
+ CHECK(order);
941
CHECK(EC_GROUP_get_order(ECKeyPointer::GetGroup(ec), order.get(), nullptr));
942
return order.byteLength();
943
}
0 commit comments