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 d4c4f77 commit 5a66e38Copy full SHA for 5a66e38
src/node_crypto.cc
@@ -6246,7 +6246,7 @@ void SetEngine(const FunctionCallbackInfo<Value>& args) {
6246
ENGINE* engine = LoadEngineById(*engine_id, &errmsg);
6247
6248
if (engine == nullptr) {
6249
- int err = ERR_get_error();
+ unsigned long err = ERR_get_error(); // NOLINT(runtime/int)
6250
if (err == 0)
6251
return args.GetReturnValue().Set(false);
6252
return ThrowCryptoError(env, err);
0 commit comments